2359. Reaux! Sham! Beaux!

单点时限: 2.0 sec

内存限制: 256 MB

Roshambo – this simple game is known all around the world. In German, it is called “Schnick, Schnack, Schnuck”, in Japanese “Janken”, in Spanish “Cachipún”, in Polish “Papier, kamien, nozyce”. The Czechs call it “Kámen, nuzky, papír”.

Whatever is the name of the game, its principles remain the same. Two players simultaneously form their hand into one of three possible shapes (symbols): Rock (closed fist), Paper (open hand), or Scissors (two fingers extended). If both of them show the same symbol, it is a tie and no points are given. Otherwise, one of the symbols wins: Rock blunts Scissors, Scissors cut Paper, and Paper covers Rock.

Czech Technical University students also know the game very well and use it to resolve small disputes. Imagine, for example, two students living together in one room. Yesterday evening, there was a small celebration, and in the morning, no one wants to go to the lectures. They agreed that one person would be enough to take notices for both, but who will be the poor one? Roshambo is a very effective way to decide.

Did you know there are even the World Series of Roshambo? Our organizing team would like to host the World Championships in 2009. Your task is to help us in developing a Roshambo scoring system and write a program that evaluates one game between two players.

Since the participants will come from different countries, the system must accept input in various languages. The following table shows names of three Roshambo symbols. Note that in some languages, there may be two different words for the same symbol.

Language Code Rock Scissors Paper
Czech cs Kamen Nuzky Papir
English en Rock Scissors Paper
French fr Pierre Ciseaux Feuille
German de Stein Schere Papier
Hungarian hu Ko | Koe Ollo | Olloo Papir
Italian it Sasso | Roccia Forbice Carta | Rete
Japanese jp Guu Choki Paa
Polish pl Kamien Nozyce Papier
Spanish es Piedra Tijera Papel

输入格式

The input contains several games. Each game starts with two lines describing players. Each of these two lines contains two lowercase letters specifying the language used by the player (see the language code in the table above), one space, and a player name. The name will consist from at most twenty upper- or lower-case letters.

After the players description, there are at most 100 lines containing individual rounds. Each round is described by two words separated with one space. The words name the symbol shown by the first and second player, respectively. All symbols are named in the mother tongue of the concerned player. All allowed words are shown in the table above, the first letter will be always in uppercase, all other letters in lowercase.

The last round is followed by a line containing one single dash character (-") and then the next game begins. The only exception is the last game in the input, which is terminated by a dot (.”) instead of the dash.

输出格式

For each game, print five lines of output. The first line should contain the string ``Game #G :”, where G is the number of the game, starting with one.

The second line will contain the first player name followed by a colon (:"), one space and the number of rounds won by that player. The number should be followed by one space and the wordpoints”. Use the singular form ``point” if (and only if) the number of points of the player equals one.

The third line has the same format and shows the second player’s name and points.

The fourth line displays the outcome of the game. It must contain the word WINNER" followed by a colon, space and the name of the player who gained more points. If both players have the same number of points, the fourth line will contain wordsTIED GAME” instead.

The fifth line is left empty to visually separate individual games.

Note: Acknowledgements to Wikipedia, the free encyclopedia, for providing background information and symbol names in various languages. If your own language is missing, it may be because it has no article on Roshambo in Wikipedia.

样例

Input
cs Pepik
en Johnny
Nuzky Scissors
Papir Rock
Papir Scissors
Output
de Gertruda
cs Lenka
Stein Papir
Schere Kamen
.

10 人解决,18 人已尝试。

10 份提交通过,共有 42 份提交。

6.7 EMB 奖励。

创建: 15 年,7 月前.

修改: 6 年,8 月前.

最后提交: 9 月,2 周前.

来源: Central 2007-2008

题目标签