#Lutece0014. Chess
Chess
Migrated from Lutece 14 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
In chess the bishop is the chessman, which can only move diagonal. It is well known that bishops can reach only fields of one color but all of them in some number of moves (assuming no other figures are on the field). You are given two coordinates on a chess-field and should determine, if a bishop can reach the one field from the other and how. Coordinates in chess are given by a letter (A
to H
) and a number ( to ). The letter specifies the column, the number the row on the chessboard.
Chessboard, bishop and fields the bishop can reach in one move
Input
The input starts with the number of test cases. Each test case consists of one line, containing the start position and end position . Each position is given by two space separated characters. A letter for the column and a number for the row. There are no duplicate test cases in one input.
Output
Output one line for every test case. If it's not possible to move a bishop from to in any number of moves output Impossible
. Otherwise output one possible move sequence from to . Output the number of moves first (allowed to be at most). Followed by positions, which describe the path the bishop has to go. Every character is separated by one space. There are many possible solutions. Any with at most moves will be accepted. Remember that in a chess move one chessman (the bishop in this case) has to change his position to be a valid move (i.e. two consecutive positions in the output must differ).
Samples
3
E 2 E 3
F 1 E 8
A 3 A 3
Impossible
2 F 1 B 5 E 8
0 A 3
Resources
GCPC 2013