Sphere Online Judge

SPOJ Problem Set (classical)

2727. Army Strength

Problem code: ARMY

The next MechaGodzilla invasion is on its way to Earth. And once again, Earth will be the battleground for an epic war.

MechaGodzilla's army consists of many nasty alien monsters, such as Space Godzilla, King Gidorah, and MechaGodzilla herself.

To stop them and defend Earth, Godzilla and her friends are preparing for the battle.

Problem specification

Each army consists of many different monsters. Each monster has a strength that can be described by a positive integer. (The larger the value, the stronger the monster.)

The war will consist of a series of battles. In each battle, the weakest of all the monsters that are still alive is killed.

If there are several weakest monsters, but all of them in the same army, one of them is killed at random. If both armies have at least one of the weakest monsters, a random weakest monster of MechaGodzilla's army is killed.

The war is over if in one of the armies all monsters are dead. The dead army lost, the other one won.

You are given the strengths of all the monsters. Find out who wins the war.

Input specification

The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line.

Each test case starts with line containing two positive integers NG and NM – the number of monsters in Godzilla's and in MechaGodzilla's army. Two lines follow. The first one contains NG positive integers – the strengths of the monsters in Godzilla's army. Similarly, the second one contains NM positive integers – the strengths of the monsters in MechaGodzilla's army.

Output specification

For each test case, output a single line with a string that describes the outcome of the battle.

If it is sure that Godzilla's army wins, output the string "Godzilla".

If it is sure that MechaGodzilla's army wins, output the string "MechaGodzilla".

Otherwise, output the string "uncertain".

Example

input:
2

1 1
1
1

3 2
1 3 2
5 5

output:
Godzilla
MechaGodzilla

Hint

In the first test case, there are only two monsters, and they are equally strong. In this situation, MechaGodzilla's monster is killed and the war ends.

In the second test case, the war will consist of three battles, and in each of them one of Godzilla's monsters dies.

For all the test cases, int in C/C++/Java or longint in Pascal is enough.


Added by:[Trichromatic] XilinX
Date:2008-05-24
Time limit:1s-2s
Source limit:50000B
Languages:All except: C99 strict ERL TECS JS
Resource:IPSC 2008

hide comments
2010-02-07 16:14:54 Carlos C.
Godzilla's a chick?! [2]
"...,Godzilla and her friends are preparing..."
2010-01-30 20:15:43 SteVen Nick Stephen
I keep getting TLE using ruby with only 20 lines of code and no loops besides the outer loop that runs the number of test cases times is ruby just not fast enough?
2009-12-03 08:28:15 VIMAL RAJ SHARMA
can anybody give me the case
for "uncertain"????????

RE: there is no case of "uncertain"

Last edit: 2009-12-20 20:41:11
2009-11-04 22:22:00 octalc0de
cin is fast enough if you use a good enough algorithm
2009-08-16 22:23:32 majid yaghoubi
Scanner is too slow for this problem!
2009-08-08 09:38:14 Ali Rabiee
cin and cout are too slow for this problem!
2009-07-09 17:50:21 Drew Saltarelli
Godzilla's a chick?!
2009-07-03 20:49:01 Indranil Bhattacharya
nice story!!!
SPOJ System © 2008-2010 Sphere Research Labs. All Rights Reserved.