寒假6.3

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.
Examples
Input
6
10
10
10
01
10
10
Output
3
Input
4
01
01
10
10
Output
2
判断前一位置与后一位置上数是否相同即可,相同则连续,不相同及断开另起一列。

#include<iostream>
using namespace std;
int main()
{
    int n,x=0;
    cin >> n;
    char a[100001][2];
    for (int i = 0; i < n; i++)
    {
        cin >> a[i][0] >> a[i][1];
    }
    for (int i = 0; i < n;i++ )
    {
        if (a[i][0] == a[i + 1][0])
        {
        }
        else
        {
            x++;
        }
    }
    cout << x;
    return 0;
}
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 12,183评论 0 10
  • 说起“年味”不得不说起小的时候,张灯结彩,杀猪宰羊,热气腾腾,人声喧闹... 那浓浓的年味已经变成一幅幅画面刻在脑...
    瑾小兮阅读 3,717评论 6 21
  • 亲爱的梁,你还好吗? 毕业这么多年,逐渐地,我们都淡出了同学的视野,而不经意间,你却进入了我的梦。 每当有外地同学...
    星韵r阅读 2,656评论 1 5

友情链接更多精彩内容