CF344A.Magnets
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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.
输入格式
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.
输出格式
On the single line of the output print the number of groups of magnets.
输入输出样例
输入#1
6 10 10 10 01 10 10
输出#1
3
输入#2
4 01 01 10 10
输出#2
2
说明/提示
The first testcase corresponds to the figure. The testcase has three groups consisting of three, one and two magnets.
The second testcase has two groups, each consisting of two magnets.