Cram

아직 제출이 없습니다시간 제한1초메모리 제한1024 MB

문제

You want to compress a given text passage using backreferences. A backreference is a pair of numbers \[a,b]\[a,b] indicating that the next bb characters of the string are the same as the bb characters starting aa characters back from the current position. The two strings may overlap, i.e., aa may be smaller than bb.

Each backreference costs three bytes to encode, regardless of the number of characters represented by the backreference. String characters cost one byte each to encode.

For instance, the string

abcabcabcabc

has 12 characters. But the last nine can be represented as a backreference to the first nine, as follows:

abc[3,9]

The total cost of this encoded string is 66: 33 bytes for the string abc, and 33 bytes for the backreference.

Output the minimum cost to encode the text passage.

입력

The single line of input contains a string ss, with 1s1051 \le |s| \le 10^5. This line of text consists of upper-case letters ('A'--'Z'), lower-case letters ('a'--'z'), and spaces. There will not be any spaces at the beginning or end of the line, and no space character will be adjacent to another space character.

출력

Output a single integer, which is the minimum cost to represent the input string using backreferences.