In chess, game pieces move about an chessboard in a fashion defined by their type. The object of the game is to capture opposing pieces by landing on their squares, and eventually trapping the king piece.
In our version of the game, we shall use a variable sized board with only pieces on it: A white pawn which moves relentlessly towards the top row of the chessboard one square at a time per move; and a black knight which can move from its current location in any of up to eight ways: two squares up or down and one square left or right, or one square up or down and two squares left or right. The knight must remain on the board at all times; any move that would take it off the board is therefore disallowed. In the diagram below, the knight's position is labelled and its possible moves are labelled to .
. . . . . . .
. . 8 . 1 . .
. 7 . . . 2 .
. . . K . . .
. 6 . . . 3 .
. . 5 . 4 . .
. . . . . . .
The pawn moves first; then the knight and pawn alternate moves. The knight tries to land either on the square occupied by the pawn (a win) or on the square immediately above the pawn (a stalemate). If the pawn reaches the top row of the board the game ends immediately and the knight loses (a loss).
Write a program to determine whether the knight can win and, if it can, the minimum number of moves it must make to do so. If the knight cannot win, your program should determine if it can cause a stalemate and, if it can, the minimum number of moves it must make to do so. Finally if the knight cannot win or cause a stalemate, your program should compute the number of moves the knight makes before the pawn wins.
The first line of input contains a positive integer, , the number of games to analyze. For each game there are six lines of input:
- , the number of rows in the chessboard
- , the number of columns in the chessboard
- , the row of the starting position of the pawn
- , the column of the starting position of the pawn
- , the row of the starting position of the knight
- , the column of the starting position of the knight
The pawn and the knight will have different starting positions. Row is at the bottom of the board and Row is at the top of the board. Column is at the left and column is at the right.
Sample Input
3
99
99
33
33
33
35
3
3
1
1
2
3
99
99
96
23
99
1
Sample Output
Win in 1 knight move(s).
Stalemate in 1 knight move(s).
Loss in 2 knight move(s).
Comments
Solved. This one was trickier than I thought. The most useful test cases for me were these:
input / expected
1 3 3 2 1 2 3 / Loss in 0 knight move(s).
1 5 3 1 1 5 3 / Win in 3 knight move(s).
1 6 2 1 1 6 1 / Stalemate in 4 knight move(s).
The idea that case 1 tests is that knight loses when pawn reaches the top of the board, even if knight can eat it in the next move. The idea that cases 2 and 3 test is that knight can move to a position already visited.
If the knight, on its starting position, cant move, is it a loss, draw or win?
The knight can move from any position on the board.
getting WA?
Remember, the knight can revisit any square.
Does anyone know where I can get a 99x99 chess set?
what would the output for this be?
1 30 30 15 15 16 15
Stalemate in 0 or 2 knight move(s)Stalemate in 0 knight move(s). Since the pawn moves first and you're looking for the minimum moves.
Can the pawn move 2 squares if it is on the first rank? If not, I seriously cannot find what I am doing wrong for this question.
Edit: NVM, the answer to that question is no. I simply put "moves(s)" instead of "move(s)", and it took me 4 hours to realize. -_-
what would the output for this be?
Loss in 1 knight move(s).