3345.George and Number

Time Limit: 1s Memory Limit: 256MB

George is a cat, so he really likes to play. Most of all he likes to play with his array of positive integers b. During the game, George modifies the array by using special changes. Let's mark George's current array as b1,b2,...,b|b| (record |b| denotes the current length of the array). Then one change is a sequence of actions:
Choose two distinct indexes i and j (1 \le i,j \le |b|;i \neq j), such that bi \ge bj. Get number v=concat(bi,bj), where concat(x,y) is a number obtained by adding number y to the end of the decimal record of number x. For example, concat(500,10)=50010, concat(2,2)=22. Add number v to the end of the array. The length of the array will increase by one. Remove from the array numbers with indexes i and j. The length of the array will decrease by two, and elements of the array will become re-numbered from 1 to current length of the array.
George played for a long time with his array b and received from array b an array consisting of exactly one number p. Now George wants to know: what is the maximum number of elements array b could contain originally? Help him find this number. Note that originally the array could contain only positive integers.

Input Format(From the terminal/stdin)

The first line of the input contains a single integer p (1 \le p \lt 10100000). It is guaranteed that number p doesn't contain any leading zeroes.

Output Format(To the terminal/stdout)

Print an integer - the maximum number of elements array b could contain originally.

Sample Input 1

Copy
9555
    \n

Sample Output 1

Copy
4
 \n

Sample Input 2

Copy
10000000005
           \n

Sample Output 2

Copy
2
 \n

Sample Input 3

Copy
800101
      \n

Sample Output 3

Copy
3
 \n

Sample Input 4

Copy
45
  \n

Sample Output 4

Copy
1
 \n

Sample Input 5

Copy
1000000000000001223300003342220044555
                                     \n

Sample Output 5

Copy
17
  \n

Sample Input 6

Copy
19992000
        \n

Sample Output 6

Copy
1
 \n

Sample Input 7

Copy
310200
      \n

Sample Output 7

Copy
2
 \n

Hints

Let's consider the test examples:
Originally array b can be equal to {5,9,5,5}. The sequence of George's changes could have been: {5,9,5,5} \rightarrow {5,5,95} \rightarrow {95,55} \rightarrow {9555}. Originally array b could be equal to {1000000000,5}. Please note that the array b cannot contain zeros. Originally array b could be equal to {800,10,1}. Originally array b could be equal to {45}. It cannot be equal to {4,5}, because George can get only array {54} from this array in one operation.
Note that the numbers can be very large.

Submit

请先 登录

© 2025 FAQs