zoukankan      html  css  js  c++  java
  • Codeforces Round #397 by Kaspersky Lab and Barcelona Bootcamp (Div. 1 + Div. 2 combined) A. Neverending competitions 水题

    A. Neverending competitions

    题目连接:

    http://codeforces.com/contest/765/problem/A

    Description

    There are literally dozens of snooker competitions held each year, and team Jinotega tries to attend them all (for some reason they prefer name "snookah")! When a competition takes place somewhere far from their hometown, Ivan, Artsem and Konstantin take a flight to the contest and back.

    Jinotega's best friends, team Base have found a list of their itinerary receipts with information about departure and arrival airports. Now they wonder, where is Jinotega now: at home or at some competition far away? They know that:

    this list contains all Jinotega's flights in this year (in arbitrary order),
    Jinotega has only flown from his hometown to a snooker contest and back,
    after each competition Jinotega flies back home (though they may attend a competition in one place several times),
    and finally, at the beginning of the year Jinotega was at home.
    Please help them to determine Jinotega's location!

    Input

    In the first line of input there is a single integer n: the number of Jinotega's flights (1 ≤ n ≤ 100). In the second line there is a string of 3 capital Latin letters: the name of Jinotega's home airport. In the next n lines there is flight information, one flight per line, in form "XXX->YYY", where "XXX" is the name of departure airport "YYY" is the name of arrival airport. Exactly one of these airports is Jinotega's home airport.

    It is guaranteed that flights information is consistent with the knowledge of Jinotega's friends, which is described in the main part of the statement.

    Output

    If Jinotega is now at home, print "home" (without quotes), otherwise print "contest".

    Sample Input

    4
    SVO
    SVO->CDG
    LHR->SVO
    SVO->LHR
    CDG->SVO

    Sample Output

    home

    Hint

    题意

    有个人要去参加比赛,他有n张飞机票,飞机票写着从A->B。

    保证他只会两种旅行,home->xxx,xxx->home。

    而且一开始在home

    但是他的飞机票顺序是乱的,问你现在他在xxx,还是在home

    题解:

    其实飞机票都是误导你的。

    如果飞机票数是偶数,那么就在家。

    否则就在xxx

    显然嘛。

    代码

    #include<bits/stdc++.h>
    using namespace std;
    
    int main()
    {
        int n;
        scanf("%d",&n);
        if(n%2==0)cout<<"home"<<endl;
        else cout<<"contest"<<endl;
    }
  • 相关阅读:
    用机器学习来预测一个活动的总交易额值
    点击率模型的二三事
    git教程
    shell的查找与替换
    python中列表和元组以及字符串的操作
    自然语言处理第一课
    shell入门
    python基础知识
    SQL指令中一些特别值得注意的地方
    【python】json
  • 原文地址:https://www.cnblogs.com/qscqesze/p/6401377.html
Copyright © 2011-2022 走看看