#Lutece0402. A Knight's Journey
A Knight's Journey
Migrated from Lutece 402 A Knight's Journey
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.
Background
The knight is getting bored of seeing the same black and white squares again and again and has decided to make a journey around the world. Whenever a knight moves, it is two squares in one direction and one square perpendicular to this. The world of a knight is the chessboard he is living on. Our knight lives on a chessboard that has a smaller area than a regular board, but it is still rectangular. Can you help this adventurous knight to make travel plans?
Description
Find a path such that the knight visits every square once. The knight can start and end on any square of the board.
Input
The input begins with a positive integer in the first line. The following lines contain test cases. Each test case consists of a single line with two positive integers and , such that . This represents a chessboard, where describes how many different square numbers exist, describes how many different square letters exist. These are the first letters of the Latin alphabet: A
,
Output
The output for every scenario begins with a line containing Scenario #i:
, where is the number of the scenario starting at . Then print a single line containing the path with the largest lexicographically order that visits all squares of the chessboard with knight moves followed by an empty line. The path should be given on a single line by concatenating the names of the visited squares. Each square name consists of a capital letter followed by a number.
If no such path exist, you should output impossible on a single line.
Output a single line after each case.
Samples
2
1 1
2 3
Scenario #1:
A1
Scenario #2:
impossible
Resources
TUD Programming Contest 2005, Darmstadt,