atcoder#AGC026A. [AGC026A] Colorful Slimes 2

[AGC026A] Colorful Slimes 2

Score : 200200 points

Problem Statement

Takahashi lives in another world. There are slimes (creatures) of 1000010000 colors in this world. Let us call these colors Color 1,2,...,100001, 2, ..., 10000.

Takahashi has NN slimes, and they are standing in a row from left to right. The color of the ii-th slime from the left is aia_i. If two slimes of the same color are adjacent, they will start to combine themselves. Because Takahashi likes smaller slimes, he has decided to change the colors of some of the slimes with his magic.

Takahashi can change the color of one slime to any of the 1000010000 colors by one spell. How many spells are required so that no slimes will start to combine themselves?

Constraints

  • 2N1002 \leq N \leq 100
  • 1aiN1 \leq a_i \leq N
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

a1a_1 a2a_2 ...... aNa_N

Output

Print the minimum number of spells required.

5
1 1 2 2 2
2

For example, if we change the color of the second slime from the left to 44, and the color of the fourth slime to 55, the colors of the slimes will be 1,4,2,5,21, 4, 2, 5, 2, which satisfy the condition.

3
1 2 1
0

Although the colors of the first and third slimes are the same, they are not adjacent, so no spell is required.

5
1 1 1 1 1
2

For example, if we change the colors of the second and fourth slimes from the left to 22, the colors of the slimes will be 1,2,1,2,11, 2, 1, 2, 1, which satisfy the condition.

14
1 2 2 3 3 3 4 4 4 4 1 2 3 4
4