zoukankan      html  css  js  c++  java
  • zzu--2014年11月16日月潭赛 C称号

    1230: Magnets

    Time Limit: 1 Sec  Memory Limit: 128 MB
    Submit: 24  Solved: 13
    [Submit][Status][Web Board]

    Description

    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-thmagnet 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.

    Sample Input

    6
    10
    10
    10
    01
    10
    10
    4
    01
    01
    10
    10

    Sample Output

    3
    2

    HINT

    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.

    Source

    CF


    题意:就是去求一堆磁铁能分成几段!


    大水题AC代码:

    #include <stdio.h>
    
    int main()
    {
        char a[3];
        int n;
        while(scanf("%d", &n) != EOF)
        {
                          scanf("%s", a);
                          n--;
                          char cur = a[1];
                          int ans=1;
                          while(n--)
                          {
                                    scanf("%s", a);
                                    if(a[0] == cur)
                                    {
                                            ans++;
                                            cur = a[1];
                                    }
                          }
                          printf("%d
    ", ans);
        }
        return 0;
    }




    版权声明:本文博客原创文章,博客,未经同意,不得转载。

  • 相关阅读:
    SY/T 4206-2019 石油天然气建设工程施工质量验收规范 电气工程
    jmeter-05
    python-02(数组,列表,元祖,词典)的简单操作实例
    linux-13(查看文件命令find、远程传输文件scp,创建文件并更改权限)
    jmeter-04
    关于python的面试题目
    linux-12(find命令的强大搜索功能,删除命令)
    python-01(如何安装python并熟悉类型)
    小程序、app、web测试的区别
    软件测试面试问题及答案
  • 原文地址:https://www.cnblogs.com/mfrbuaa/p/4632972.html
Copyright © 2011-2022 走看看