#Lutece0368. Interesting Checkers
Interesting Checkers
Migrated from Lutece 368 Interesting Checkers
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
Totalfrank has fall in love with JoyZhang for a long time. But Totalfrank is from Mars and JoyZhang is from Venus. You know it’s hard to keep the subtle relationship for a long distance. Recently, Totalfrank misses her so much and can’t wait to date her. But JoyZhang thinks that she would only date clever guys. So she decides to play an interesting checkers with him. And if he wins, she will date him.
They play checkers in a board with rows and columns. Each player has exactly one piece in every column. Every round, Totalfrank must move one but only one of his two pieces upwards by a grid first, and then JoyZhang moves one of her two pieces downwards by a gird. When a piece meets another player’s piece, it must jump it, meaning that you should move it by two grids. Every piece can’t move out of board. The one who can’t move loses the game.
Now give you a situation and Totalfrank moves first, can you tell Totalfrank who will win. You may assume that they are all clever enough.
Pictures above are corresponding with sample inputs.
Input
The first line of input contains an integer (), which is the number of data sets that follow.
Every data set contains only one line with integers , , , , , ()indicating the number of rows, the distances from bottom to Totalfrank’s piece in column and column and the distances from top to JoyZhang’s piece in column and column. You can assume that no pieces are in the same grid at the beginning.
Output
For every test case, you should output Case #k:
first in a single line, where indicates the case number and starts at . Then output the Totalfrank
if Totalfrank wins or JoyZhang
if JoyZhang wins.
Samples
3
3 0 0 0 1
3 0 0 1 1
3 1 0 0 0
Case #1:
Totalfrank
Case #2:
JoyZhang
Case #3:
Totalfrank
Resources
The 9th UESTC Programming Contest Preliminary