概述
Mad scientist Mike entertains himself by arranging rows of dominoes. He doesn’t need dominoes, though: he uses rectangular magnets instead. Each magnet has two poles, positive (a “plus”) and negative (a “minus”). If two magnets are put together at a close distance, then the like poles will repel each other and the opposite poles will attract each other.
Mike starts by laying one magnet horizontally on the table. During each following step Mike adds one more magnet horizontally to the right end of the row. Depending on how Mike puts the magnet on the table, it is either attracted to the previous one (forming a group of multiple magnets linked together) or repelled by it (then Mike lays this magnet at some distance to the right from the previous one). We assume that a sole magnet not linked to others forms a group of its own.
Mike arranged multiple magnets in a row. Determine the number of groups that the magnets formed.
Input
The first line of the input contains an integer n (1 ≤ n ≤ 100000) — the number of magnets. Then n lines follow. The i-th line (1 ≤ i ≤ n) contains either characters “01”, if Mike put the i-th magnet in the “plus-minus” position, or characters “10”, if Mike put the magnet in the “minus-plus” position.
Output
On the single line of the output print the number of groups of magnets.
Example
Input
6
10
10
10
01
10
10
Output
3
Input
4
01
01
10
10
Output
2
import java.util.Scanner;
/**
* Created by 95112 on 10/22/2017.
*/
public class Magnet {
public static void main(String[] args)
{
Scanner scanner = new Scanner(System.in);
int n
= scanner.nextInt();
int group = 1;
int pre = scanner.nextInt();
for (int i = 1 ; i < n; i++){
int tmp = scanner.nextInt();
if (tmp != pre)
{
group++;
pre = tmp;
}
}
System.out.println(group);
}
}
最后
以上就是干净季节为你收集整理的CodeForce334AInputOutputInputOutputInputOutput的全部内容,希望文章能够帮你解决CodeForce334AInputOutputInputOutputInputOutput所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复