Preparando MOJI

Beautiful Decomposition

2000ms 262144K

Description:

Valera considers a number beautiful, if it equals 2k or -2k for some integer k (k ≥ 0). Recently, the math teacher asked Valera to represent number n as the sum of beautiful numbers. As Valera is really greedy, he wants to complete the task using as few beautiful numbers as possible.

Help Valera and find, how many numbers he is going to need. In other words, if you look at all decompositions of the number n into beautiful summands, you need to find the size of the decomposition which has the fewest summands.

Input:

The first line contains string s (1 ≤ |s| ≤ 106), that is the binary representation of number n without leading zeroes (n > 0).

Output:

Print a single integer — the minimum amount of beautiful numbers that give a total of n.

Sample Input:

10

Sample Output:

1

Sample Input:

111

Sample Output:

2

Sample Input:

1101101

Sample Output:

4

Note:

In the first sample n = 2 is a beautiful number.

In the second sample n = 7 and Valera can decompose it into sum 23 + ( - 20).

In the third sample n = 109 can be decomposed into the sum of four summands as follows: 27 + ( - 24) + ( - 22) + 20.

Informação

Codeforces

Provedor Codeforces

Código CF279E

Tags

dpgamesgreedynumber theory

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:42:25

Relacionados

Nada ainda