Neverending competitions

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

Input
4
SVO
SVO->CDG
LHR->SVO
SVO->LHR
CDG->SVO
Output
home
Input
3
SVO
SVO->HKT
HKT->SVO
SVO->RAP
Output
contest

Hint

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.


水题只需要判断一下在家机场出去的次数与回家乡机场次数是否相同即可;
AC代码:

#include <iostream>
#include<algorithm>
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
#include<math.h>
using namespace std;
struct A{
    char a[1100];
    char b[1100];
}a[110];
int main()
{
     int i,j,k,n,m,x,y,d,e,t;
     char b[110],c[110];
    while(scanf("%d %s",&n,b)!=EOF)
    {x=0;
    y=0;
        for(i=0;i<n;i++)
        {
                scanf(" %s",c);
                for(j=0;j<3;j++)
                a[i].a[j]=c[j];
                a[i].a[3]=0;
                for(j=0;j<3;j++)
                a[i].b[j]=c[j+5];
                a[i].b[3]=0;
        }
        for(i=0;i<n;i++)

        {if(strcmp(b,a[i].a)==0)
       x++;
       if(strcmp(b,a[i].b)==0)
            y++;
        }
        if(x==y)
        printf("home\n");
        else
        printf("contest\n");

    }

    return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_41232172/article/details/79617099