• Codeforces Round #397 by Kaspersky Lab and Barcelona Bootcamp (Div. 1 + Div. 2 combined) 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".

    Examples
    input
    4
    SVO
    SVO->CDG
    LHR->SVO
    SVO->LHR
    CDG->SVO
    output
    home
    input
    3
    SVO
    SVO->HKT
    HKT->SVO
    SVO->RAP
    output
    contest
    Note

    In the first sample Jinotega might first fly from SVO to CDG and back, and then from SVO to LHR and back, so now they should be at home. In the second sample Jinotega must now be at RAP because a flight from RAP back to SVO is not on the list.

    题意:告诉我们飞机的航班流程,年初在家,(注意题目说从家里出发是会回来的)最后问我们,他是在home还是contest

    解法:既然从家里出发会返回,那么我们只要比较出现家的次数奇偶性就行,偶数就是在家,奇数就是还没有回来

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 int n;
     4 char s1[200],s2[200];
     5 int main()
     6 {
     7     int ans=0;
     8     cin>>n;
     9     scanf("%s",s1);
    10     for(int i=0;i<n;i++)
    11     {
    12         scanf("%s",s2);
    13         if(strstr(s2,s1)!=NULL)
    14         {
    15             ans++;
    16         }
    17     }
    18     if(ans%2)
    19     {
    20         cout<<"contest";
    21     }
    22     else
    23     {
    24         cout<<"home";
    25     }
    26     return 0;
    27 }
  • 相关阅读:
    Swift 网络请求数据与解析
    第三方-Swift2.0后Alamofire的使用方法
    java异常处理机制throws
    eclipse导入不到嵌套的项目
    java异常处理机制Exception
    在eclipse中查找指定文件
    mysql查询count
    【待解决】An internal error occurred during: "Launching baiduTest1". java.lang.NullPointerException
    TestNG升级
    eclipse安装TestNG插件
  • 原文地址:https://www.cnblogs.com/yinghualuowu/p/6399109.html
Copyright © 2020-2023  润新知