Problem D. Life Winner Bo
时间限制 1000 ms
内存限制 128 MB
Bo is a "Life Winner".He likes playing chessboard games with his girlfriend G.
The size of the chessboard is $N\times M$.The top left corner is numbered$(1,1)$ and the lower right corner is numberd $(N,M)$.
For each game,Bo and G take turns moving a chesspiece(Bo first).At first,the chesspiece is located at $(1,1)$.And the winner is the person who first moves the chesspiece to $(N,M)$.At one point,if the chess can't be moved and it isn't located at $(N,M)$,they end in a draw.
In general,the chesspiece can only be moved right or down.Formally,suppose it is located at $(x,y)$,it can be moved to the next point $(x',y')$ only if $x'\geq x$ and $y'\geq y$.Also it can't be moved to the outside of chessboard.
Besides,There are four kinds of chess(They have movement rules respectively).
1.king.
2.rook(castle).
3.knight.
4.queen.
(The movement rule is as same as the chess.)
For each type of chess,you should find out that who will win the game if they both play in an optimal strategy.
Print the winner's name("B" or "G") or "D" if nobody wins the game.
输入数据
输出数据
For each question,print the answer.
样例输入
复制
4
1 5 5
2 5 5
3 5 5
4 5 5
样例输出
$ Mathjax font initiator $