#abc124c. [abc124_c]Coloring Colorfully
[abc124_c]Coloring Colorfully
Problem Statement
tiles are arranged in a row from left to right. The initial color of each tile is represented by a string of length .
The -th tile from the left is painted black if the -th character of is 0
, and painted white if that character is 1
.
You want to repaint some of the tiles black or white, so that any two adjacent tiles have different colors.
At least how many tiles need to be repainted to satisfy the condition?
Constraints
- is
0
or1
.
Input
Input is given from Standard Input in the following format:
Output
Print the minimum number of tiles that need to be repainted to satisfy the condition.
Sample Input 1
000
Sample Output 1
1
The condition can be satisfied by repainting the middle tile white.
Sample Input 2
10010010
Sample Output 2
3
Sample Input 3
0
Sample Output 3
0