ARMY - Army Strength

no tags 

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.


hide comments
iit2015068: 2015-09-26 23:14:00

take care of maximum number of monsters in army. Got one Runtime Error(SIGSEGV) due to assuming maximum 100 monsters in army.

mkatiyar: 2015-09-16 07:40:27

Can someone post some testcases ? I'm finding max of the two and printing accordingly, but getting wrong answers. Incase of equal, its always Godzilla wins. Also took care of 0 and 0 cases.

Sarthak Munshi: 2015-09-15 16:26:43

Easy Logic !

Last edit: 2015-09-15 18:35:24
avidcoder: 2015-09-03 16:38:00

"If there are several weakest monsters, but all of them in the same army, one of them is killed at random "
This imply that finally one in both teams should reamain.
"If both armies have at least one of the weakest monsters, a random weakest monster of MechaGodzilla's army is killed"
This imply that if both have same strengths then Godzilla wins.(else MechaGodzilla wins).
No sorting, queus,arrays,etc..
Just find largest of both linearly.
Number of members in a team do not matter at all

Last edit: 2015-09-03 16:42:53
satya_jha123: 2015-08-23 22:53:20

http://ideone.com/
i am comparing the power of last monster of both .i have simply used a swap function to arrange numbers in array.have a look at the code

Akash Shinde: 2015-08-21 13:30:52

check which is is strongest in both army and compared them

dark_lord1: 2015-08-20 17:23:58

No sorting needed.. did in O(n) time and O(1) space..No need to store all the values..One of the easiest on SPOJ

shreynik kumar: 2015-08-17 20:07:22

printf("MechaGodzilla")...got 2 WA...be careful:)

Babu: 2015-08-14 17:57:27

Think yourself! the uncertain case can never happen!!! got AC without that

SUBHAJIT GORAI: 2015-07-28 14:06:45

no need to handle the " uncertain case ".


Added by:Fudan University Problem Setters
Date:2008-05-24
Time limit:0.5s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: C99 ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:IPSC 2008