• Codeforces Round #281 (Div. 2) A. Vasya and Football 暴力水题


    A. Vasya and Football
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Vasya has started watching football games. He has learned that for some fouls the players receive yellow cards, and for some fouls they receive red cards. A player who receives the second yellow card automatically receives a red card.

    Vasya is watching a recorded football match now and makes notes of all the fouls that he would give a card for. Help Vasya determine all the moments in time when players would be given red cards if Vasya were the judge. For each player, Vasya wants to know only the first moment of time when he would receive a red card from Vasya.

    Input

    The first line contains the name of the team playing at home. The second line contains the name of the team playing away. Both lines are not empty. The lengths of both lines do not exceed 20. Each line contains only of large English letters. The names of the teams are distinct.

    Next follows number n (1 ≤ n ≤ 90) — the number of fouls.

    Each of the following n lines contains information about a foul in the following form:

    • first goes number t (1 ≤ t ≤ 90) — the minute when the foul occurs;
    • then goes letter "h" or letter "a" — if the letter is "h", then the card was given to a home team player, otherwise the card was given to an away team player;
    • then goes the player's number m (1 ≤ m ≤ 99);
    • then goes letter "y" or letter "r" — if the letter is "y", that means that the yellow card was given, otherwise the red card was given.

    The players from different teams can have the same number. The players within one team have distinct numbers. The fouls go chronologically, no two fouls happened at the same minute.

    Output

    For each event when a player received his first red card in a chronological order print a string containing the following information:

    • The name of the team to which the player belongs;
    • the player's number in his team;
    • the minute when he received the card.

    If no player received a card, then you do not need to print anything.

    It is possible case that the program will not print anything to the output (if there were no red cards).

    Sample test(s)
    Input
    MC
    CSKA
    9
    28 a 3 y
    62 h 25 y
    66 h 42 y
    70 h 25 y
    77 a 4 y
    79 a 25 y
    82 h 42 r
    89 h 16 y
    90 a 13 r
    Output
    MC 25 70
    MC 42 82
    CSKA 13 90

    对于这种题,暴力扫一遍就好,有一个wa点就是每个人只用输出第一个
    #include <cstdio>
    #include <cmath>
    #include <cstring>
    #include <ctime>
    #include <iostream>
    #include <algorithm>
    #include <set>
    #include <vector>
    #include <sstream>
    #include <queue>
    #include <typeinfo>
    #include <fstream>
    typedef long long ll;
    using namespace std;
    //freopen("D.in","r",stdin);
    //freopen("D.out","w",stdout);
    #define sspeed ios_base::sync_with_stdio(0);cin.tie(0)
    int kiss[100];
    int kill[100];
    int main()
    {
        memset(kill,0,sizeof(kill));
        memset(kiss,0,sizeof(kiss));
        string a,b;
        cin>>a>>b;
        int n;
        cin>>n;
        while(n--)
        {
            int q,w;
            char m,s;
            cin>>q>>m>>w>>s;
            if(m=='h')
            {
                if(s=='y'&&kiss[w]!=-1)
                    kiss[w]++;
                if(s=='r'&&kiss[w]!=-1)
                    kiss[w]=2;
                if(kiss[w]==2)
                {
                    cout<<a<<" "<<w<<" "<<q<<endl;
                    kiss[w]=-1;
                }
            }
            if(m=='a')
            {
                if(s=='y'&&kill[w]!=-1)
                    kill[w]++;
                if(s=='r'&&kill[w]!=-1)
                    kill[w]=2;
                if(kill[w]==2)
                {
                    cout<<b<<" "<<w<<" "<<q<<endl;
                    kill[w]=-1;
                }
            }
        }
        return 0;
    }
  • 相关阅读:
    简单的倒计时 时间显示
    git submodule
    使用选择器语法来查找元素
    yo bootstrap mui 使用对比
    flexbox 兼容安卓4.3
    mac 下 php 安装 中的坑
    微信网页开发
    能发送http请求(get,post)的工具
    h5宣传页制作过程中遇到的问题
    功能模块图、业务流程图、处理流程图、ER图,数据库表图(概念模型和物理模型)画法
  • 原文地址:https://www.cnblogs.com/qscqesze/p/4142555.html
Copyright © 2020-2023  润新知