题库练习 String Compression
← 上一题 下一题 →

A10985 | String Compression

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Ivan wants to write a letter to his friend. The letter is a string $s$ consisting of lowercase Latin letters.

Unfortunately, when Ivan started writing the letter, he realised that it is very long and writing the whole letter may take extremely long time. So he wants to write the compressed version of string $s$ instead of the string itself.

The compressed version of string $s$ is a sequence of strings $c_{1},s_{1},c_{2},s_{2},...,c_{k},s_{k}$ , where $c_{i}$ is the decimal representation of number $a_{i}$ (without any leading zeroes) and $s_{i}$ is some string consisting of lowercase Latin letters. If Ivan writes string $s_{1}$ exactly $a_{1}$ times, then string $s_{2}$ exactly $a_{2}$ times, and so on, the result will be string $s$ .

The length of a compressed version is $|c_{1}|+|s_{1}|+|c_{2}|+|s_{2}|...\ |c_{k}|+|s_{k}|$ . Among all compressed versions Ivan wants to choose a version such that its length is minimum possible. Help Ivan to determine minimum possible length.

输入格式

The only line of input contains one string $s$ consisting of lowercase Latin letters ( $1<=|s|<=8000$ ).

输出格式

Output one integer number — the minimum possible length of a compressed version of $s$ .

输入输出样例

输入 #1
aaaaaaaaaa
输出 #1
3
输入 #2
abcab
输出 #2
6
输入 #3
cczabababab
输出 #3
7
C++ 编辑器
输入
输出