#Lutece0330. F1 Champions
F1 Champions
Migrated from Lutece 330 F1 Champions
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Formula One championship consists of series of races called Grand Prix. After every race drivers receive points according to their final position. Only the top drivers receive points in the following order , , , , , , , , , . At the conclusion of the championship the driver with most points is the champion. If there is a tie, champion is the one with most wins (i.e. first places). If a tie still exists, it is chosen the one with most second places, and so on, until there are no more place to use for compare.
Last year another scoring system was proposed but rejected. In it the champion is the one with most wins. If there is tie, champion is the one with most points. If a tie still exists it is proceeded the same way as in the original scoring system, that is comparing number of second, third, forth, and so on, places.
You are given the result of all races during the season and you are to determine the champion according to both scoring systems. It is guaranteed, that both systems will produce unique champion.
Input
There are multi-cases. For each case the first line contain integer (), where is the number of races. After that all races are described one by one. Every race description start with an integer () on a line of itself, where is the number of clasified drivers in the given race. After that n lines follow with the classification for the race, each containing the name of a driver. The names of drivers are given in order from the first to the last place. The name of the driver consists of lowercase and uppercase English letters and has length at most characters. Comparing of names should be case-sensetive.
Output
For each case. Your output should contain exactly two line. On the first line is the name of the champion according to the original rule, and on the second line the name of the champion according to the alternative rule.
Samples
3
3
Hamilton
Vettel
Webber
2
Webber
Vettel
2
Hamilton
Vettel
2
7
Prost
Surtees
Nakajima
Schumacher
Button
DeLaRosa
Buemi
8
Alonso
Prost
NinoFarina
JimClark
DeLaRosa
Nakajima
Patrese
Surtees
Vettel
Hamilton
Prost
Prost
Resources
2011寒假训练(一)(Not Original)