Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
高橋君は異世界に住んでいます。この世界のスライムの色は 色存在し,色 と呼ぶことにします。
高橋君は 匹のスライムを飼っており,スライムは左右に一列に並んでいます。左から 匹目のスライムの色は です。 もし同じ色どうしのスライムが隣り合っていると,そのスライムたちは合体してしまいます。高橋君は小さいスライムのほうが好きなので,魔法でスライムの色を何匹か変えることにしました。
高橋君は魔法を唱えることで,どれか 匹のスライムの色を, 色のうち好きな色に変えることが出来ます。 どのスライムたちも合体しないようにするには,最小で何回魔法を唱える必要があるでしょうか?
制約
- 入力される値は全て整数である
入力
入力は以下の形式で標準入力から与えられる。
出力
高橋君が唱える必要のある魔法の最小回数を出力して下さい。
入力例 1Copy
5 1 1 2 2 2
出力例 1Copy
2
例えば左から 匹目のスライムの色を,左から 匹目のスライムの色を に変えると, スライムの色は となり,これで条件を満たします。
入力例 2Copy
3 1 2 1
出力例 2Copy
0
匹目と 匹目のスライムは同じ色ですが隣り合っていないため,魔法を唱える必要はありません。
入力例 3Copy
5 1 1 1 1 1
出力例 3Copy
2
たとえば 匹目のスライムの色を に変えると,スライムの色は となり,これで条件を満たします。
入力例 4Copy
14 1 2 2 3 3 3 4 4 4 4 1 2 3 4
出力例 4Copy
4
Score : points
Problem Statement
Takahashi lives in another world. There are slimes (creatures) of colors in this world. Let us call these colors Color .
Takahashi has slimes, and they are standing in a row from left to right. The color of the -th slime from the left is . 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 colors by one spell. How many spells are required so that no slimes will start to combine themselves?
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the minimum number of spells required.
Sample Input 1Copy
5 1 1 2 2 2
Sample Output 1Copy
2
For example, if we change the color of the second slime from the left to , and the color of the fourth slime to , the colors of the slimes will be , which satisfy the condition.
Sample Input 2Copy
3 1 2 1
Sample Output 2Copy
0
Although the colors of the first and third slimes are the same, they are not adjacent, so no spell is required.
Sample Input 3Copy
5 1 1 1 1 1
Sample Output 3Copy
2
For example, if we change the colors of the second and fourth slimes from the left to , the colors of the slimes will be , which satisfy the condition.
Sample Input 4Copy
14 1 2 2 3 3 3 4 4 4 4 1 2 3 4
Sample Output 4Copy
4