• CodeForces 344A Magnets


    A. Magnets 
    time limit per test 
    1 second
    memory limit per test 
    256 megabytes 
    input 
    standard input
    output 
    standard output

    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.

    Sample test(s)
    input
    6
    10
    10
    10
    01
    10
    10
    output
    3
    input
    4
    01
    01
    10
    10
    output
    2
    Note

    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.

    题意:01分别表示磁铁的两极,给定磁铁摆放的位置,同性相斥,异性相吸,问最后一共有多少块

    分析:01 01 10 10 中,第一块和第二块连在一起,第三块和第四块连一起,第二块和第三块相斥。

    简单模拟题

    #pragma comment(linker, "/STACK:1024000000,1024000000")
    #include<cstdio>
    #include<string>
    #include<iostream>
    #include<cstring>
    #include<cmath>
    #include<stack>
    #include<queue>
    #include<vector>
    #include<map>
    #include<stdlib.h>
    #include<algorithm>
    #define LL __int64
    using namespace std;
    int main()
    {
        int n;
        scanf("%d",&n);
        int pre=-1,num,ans=0;
        for(int i=0;i<n;i++)
        {
            scanf("%d",&num);
            if(pre==-1) {pre=num;ans++;continue;}
            if(pre==10 && num==1) {ans++;pre=1;}
            if(pre==1 && num==10) {ans++;pre=10;}
        }
        printf("%d
    ",ans);
        return 0;
    }
    View Code
  • 相关阅读:
    EF6 在原有数据库中使用 CodeFirst 总复习(三、重建迁移)
    EF6 在原有数据库中使用 CodeFirst 总复习(四、新建实体对象)
    EF6 在原有数据库中使用 CodeFirst 总复习(五、生成发帖页面)
    实体框架 (EF) 入门 => 一、我该用哪个工作流?
    实体框架 (EF) 入门 => 二、在全新的数据库中使用 Code First
    asp.net core 2.0 webapi集成signalr
    实体框架 (EF) 入门 => 三、CodeFirst 支持的完整特性列表
    ORM框架之------Dapper,Net下无敌的ORM
    Dapper Helper
    .NET平台微服务项目汇集
  • 原文地址:https://www.cnblogs.com/clliff/p/4720376.html
Copyright © 2020-2023  润新知