CF825F.String Compression

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Ivan wants to write a letter to his friend. The letter is a string ss 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 ss instead of the string itself.

The compressed version of string ss is a sequence of strings c1,s1,c2,s2,...,ck,skc_{1},s_{1},c_{2},s_{2},...,c_{k},s_{k} , where cic_{i} is the decimal representation of number aia_{i} (without any leading zeroes) and sis_{i} is some string consisting of lowercase Latin letters. If Ivan writes string s1s_{1} exactly a1a_{1} times, then string s2s_{2} exactly a2a_{2} times, and so on, the result will be string ss .

The length of a compressed version is c1+s1+c2+s2... ck+sk|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 ss consisting of lowercase Latin letters ( 1<=s<=80001<=|s|<=8000 ).

输出格式

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

输入输出样例

  • 输入#1

    aaaaaaaaaa
    

    输出#1

    3
    
  • 输入#2

    abcab
    

    输出#2

    6
    
  • 输入#3

    cczabababab
    

    输出#3

    7
    

说明/提示

In the first example Ivan will choose this compressed version: c1c_{1} is 10, s1s_{1} is a.

In the second example Ivan will choose this compressed version: c1c_{1} is 1, s1s_{1} is abcab.

In the third example Ivan will choose this compressed version: c1c_{1} is 2, s1s_{1} is c, c2c_{2} is 1, s2s_{2} is z, c3c_{3} is 4, s3s_{3} is ab.

首页