#Lutece1024. Flying Chess
Flying Chess
Migrated from Lutece 1024 Flying Chess
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
Ye.Dong likes playing flying chess very much, so he wants Ye.Han to play with him.
To simplify the problem, we define the rules as follows:
- Ye.Dong and Ye.Han both have two plane chesses. All chesses are at point at the very begining. When two planes of a person both reach the destination(point ), he'll win the game.
- If one of the planes of a person has not reach the destination(point ), the another plane of his cannot take off.
- Two people throw a dice by turns, and the number(~) is the steps that the taken-off plane will fly forwards.
- The plane, which has not taken off(in other words, at the point ), can take off(fly from point to point ) only if he throws a dice and get the number .
- If a plane of person A will fly to point , and there is already one plane belonging to person B, the personA's plane will reach the point x, and the personB's will return to point 0.
- We assume that and you are at the point now, then you will reach the destination(point ) if you get the number after throwing a dice.
- Ye.Dong takes the first turn.
Now you know the number they'll get after throwing a dice. Your task is to find out who will win the game.
Input
The first line contains only one integer, , which is the number of test cases.
For each case:
The first line contains two integers, and . is the number of the destination point. They both will throw a dice for times.
The following two lines both contain integers, representing the number of dice of Ye.Dong and Ye.Han will get.
Output
For each case:
Print Ye.Dong
if Ye.Dong wins; print Ye.Han
if Ye.Han wins.
If no one wins after turns, print Tie.
Samples
3
5 5
6 4 6 2 2
6 4 6 4 6
5 5
6 4 6 2 2
6 4 6 2 2
5 2
6 1
1 1
Ye.Han
Ye.Han
Tie.
Note
For Sample :
- Ye.Dong: plane ->
- Ye.Han: plane ->
- Ye.Dong: plane -> (destination point )
- Ye.Han: plane -> (destination point )
- Ye.Dong: plane ->
- Ye.Han: plane ->
- Ye.Dong: plane ->
- Ye.Han: plane -> (destination point ) Ye.Han wins (There are still some numbers of dice. You can just assume that they are killing the time. = =!)
For Sample :
- Ye.Dong: plane ->
- Ye.Han: plane ->
- Ye.Dong: plane -> (destination point )
- Ye.Han: plane -> (destination point )
- Ye.Dong: plane ->
- Ye.Han: plane ->
- Ye.Dong: plane ->
- Ye.Han: plane -> , and then Ye.Dong's plane will return back to point
- Ye.Dong: the number is not , so the plane cannot take off
- Ye.Han: plane -> (destination point ) Ye.Han wins
Resources
GuessEver