问题1004--Academy Awards

1004: Academy Awards

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

Selected from 3850 teams from 1329 universities in 68 countries competing at 106 sites and preliminary contests worldwide, sixty-eight teams competed for bragging rights and prizes at The 27th Annual ACM International Collegiate Programming Contest World Finals sponsored by IBM on March 25,2003, in Hollywood,California. The 2003 World Champion is Warsaw University.And Zhongshan University won the 8th place.During those days,another world famous event was held in the same place. It was the 75th Annual Academy Awards.It's also known as Oscar. We always say that the Best Picture is the most important award of all the awards.Before the Oscar Night,we can't tell which film will win Best Picture.Fortunately,we can dope it out from the Nominee List of all the awards other than the Best Picture.I suggest that you should follow my 3 rules here. 1 All the films in the list have chances to win the Best Picture 2 The film which will win the Best Picture is the film which has been nominated the most times in the list 3 if there are more than one film which have been nominated the most times in the list , we will choose the first one which appears in the list Let's see such a List below. VISUAL EFFECTS THE LORD OF THE RINGS:THE TWO TOWERS SPIDER-MAN STAR WARS EPISODE II ATTACK OF THE CLONES SOUND EDITING THE LORD OF THE RINGS:THE TWO TOWERS MINORRITY ROAD TO PERDITION From the list ,we can find THE LORD OF THE RINGS:THE TWO TOWERShas been nomianted twice.And each of the other filmes has been nominated only once.so we can say THE LORD OF THE RINGS:THE TWO TOWERS will win the Best Picture. You task is to write program to figure out the anticipatory winner from the list.

输入

The input file will consist of several lists.The first line of each list contains only one integer n(1<=n<=100),representing the number of awards in the list.Then you get n blocks.Each block indicated the nominees of a distinct award.The first line of each block is the name of the award which is not longer than 80.The second line is mi(1<=mi<=10,1<=i<=n)-the number of nominated films.In the following lines are mi film names,one per line.For make the question simple,you can assume that there isn't any space in the film names. The input is terminated by a line with one zero.

输出

For each list ,you are supposed to figure out the winner of best picture in a single line.

样例输入 Copy

2
VISUAL_EFFECTS
3
THE_LORD_OF_THE_RINGS:_THE_TWO_TOWERS
SPIDER-MAN
STAR_WARS_EPISODE_II_ATTACK_OF_THE_CLONES
SOUND_EDITING
3
THE_LORD_OF_THE_RINGS:_THE_TWO_TOWERS
MINORRITY_REPORT
ROAD_TO_PERDITION
0

样例输出 Copy

THE_LORD_OF_THE_RINGS:_THE_TWO_TOWERS

来源/分类