CF825F.String Compression
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 c1,s1,c2,s2,...,ck,sk , where ci is the decimal representation of number ai (without any leading zeroes) and si is some string consisting of lowercase Latin letters. If Ivan writes string s1 exactly a1 times, then string s2 exactly a2 times, and so on, the result will be string s .
The length of a compressed version is ∣c1∣+∣s1∣+∣c2∣+∣s2∣... ∣ck∣+∣sk∣ . 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
说明/提示
In the first example Ivan will choose this compressed version: c1 is 10, s1 is a.
In the second example Ivan will choose this compressed version: c1 is 1, s1 is abcab.
In the third example Ivan will choose this compressed version: c1 is 2, s1 is c, c2 is 1, s2 is z, c3 is 4, s3 is ab.