CF1201E1.Knightmare (easy)
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
This problem only differs from the next problem in constraints.
This is an interactive problem.
Alice and Bob are playing a game on the chessboard of size n×m where n and m are even. The rows are numbered from 1 to n and the columns are numbered from 1 to m . There are two knights on the chessboard. A white one initially is on the position (x1,y1) , while the black one is on the position (x2,y2) . Alice will choose one of the knights to play with, and Bob will use the other one.
The Alice and Bob will play in turns and whoever controls the white knight starts the game. During a turn, the player must move their knight adhering the chess rules. That is, if the knight is currently on the position (x,y) , it can be moved to any of those positions (as long as they are inside the chessboard):
(x+1,y+2) , (x+1,y−2) , (x−1,y+2) , (x−1,y−2) , (x+2,y+1) , (x+2,y−1) , (x−2,y+1) , (x−2,y−1) .
We all know that knights are strongest in the middle of the board. Both knight have a single position they want to reach:
- the owner of the white knight wins if it captures the black knight or if the white knight is at (n/2,m/2) and this position is not under attack of the black knight at this moment;
- The owner of the black knight wins if it captures the white knight or if the black knight is at (n/2+1,m/2) and this position is not under attack of the white knight at this moment.
Formally, the player who captures the other knight wins. The player who is at its target square ( (n/2,m/2) for white, (n/2+1,m/2) for black) and this position is not under opponent's attack, also wins.
A position is under attack of a knight if it can move into this position. Capturing a knight means that a player moves their knight to the cell where the opponent's knight is.
If Alice made 350 moves and nobody won, the game is a draw.
Alice is unsure in her chess skills, so she asks you for a help. Choose a knight and win the game for her. It can be shown, that Alice always has a winning strategy.
输入格式
无
输出格式
The interaction starts with two integers n and m ( 6≤n,m≤40 , n and m are even) — the dimensions of the chessboard.
The second line contains four integers x1,y1,x2,y2 ( 1≤x1,x2≤n , 1≤y1,y2≤m ) — the positions of the white and the black knight. It is guaranteed that the two knights have different starting positions. It is also guaranteed that none of the knights are in their own target square in the beginning of the game (however, they can be on the opponent's target position).
Your program should reply with either "WHITE" or "BLACK", depending on the knight you want to play with. In case you select the white knight, you start the game.
During every your turn, you need to print two integers: x and y , the position to move the knight. If you won the game by this turn, you must terminate your program immediately.
After every turn of the opponent, you will receive two integers: x and y , the position where Bob moved his knight.
If your last move was illegal or you lost the game after jury's turn, or you made 350 moves, and haven't won, you will receive "-1 -1". In such cases, you should terminate your program and then you will get a Wrong Answer verdict.
After printing anything, do not forget to output the end of line and flush the output. Otherwise, you might get Idleness limit exceeded. To do this, use:
- fflush(stdout) or cout.flush() in C++;
- System.out.flush() in Java;
- flush(output) in Pascal;
- stdout.flush() in Python;
- see documentation for other languages.
Hacks are disabled for this problem.
Jury's program is adaptive: the moves of jury may depend on the moves made by your program.
输入输出样例
输入#1
8 8 2 3 1 8
输出#1
WHITE 4 4
输入#2
6 6 4 4 2 2 6 3
输出#2
BLACK 4 3
说明/提示
In the first example, the white knight can reach it's target square in one move.
In the second example black knight wins, no matter what white knight moves.