#Lutece0750. Rotating Penguin Maze

Rotating Penguin Maze

Migrated from Lutece 750 Rotating Penguin Maze

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

Sometimes I just need to manouver a baby penguin as quickly as possible through a maze, so it can find the fish someone has hidden inside. I have taught the penguin to be proficient with a compass, and can thus give it instructions E, N, W and S. The penguin's maze also has an extra feature: at some of the tiles are pressure plates that cause a 9090 degree counter-clockwise rotation of the whole iceberg on which the maze is located, when the penguin steps on one of them. The penguin is oblivious to this, as it rotates along with the iceberg. The compass needle, however, doesn't rotate along with the iceberg, and thus I have to modify my instructions whevenever such a pressure plate is activated. In the long run, I think this will give me a headache, so please, can you write a program to help me out? Fortunately the maze always has exactly one path from the starting tile to the goal tile. Between each pair of tiles there exists exactly one path, and the starting tile will never contain a pressure plate.

Input

The first line of the input consists of a single integer TT, the number of test cases. Each test case begins with a line containing two integers XX, YY - the size of the maze in the XX and YY directions, and another line containing 44 integers pxp_x, pyp_y, gxg_x, gyg_y - the penguin's starting coordinates and the goal tile coordinates. Then follow YY lines with XX characters each, where each character represents a single tile of the labyrinth as a base-3232 number (0,19,A,B,,V)(0,1\cdots 9, A,B,\cdots ,V). This number is the sum of the features the tile contains: If the tile has an east-going passage, 11 is added to the sum. If the tile has a north-going passage,22 is added. For west-going passages 44 is added, and for south-going ones 88. In addition,if the tile contains a pressure plate, 1616 (or GG) is added to the sum. Thus e.g. a tile value of HH (or 1717) means the tile has an east-going passage and a pressure plate.

Output

For each test case, output a single line with the compass instructions you will have to give your penguin to guide it along the shortest path to the tile where the fish can be found, assuming each instruction makes it move exactly one tile in the given direction.

Samples

1
2 3
0 0 1 2
9C
AQ
22
ESE

Note

0<T1000 < T \leq 100

0<X5000 < X \leq 500

0<Y5000 < Y \leq 500

0px,gx<X0 \leq p_x, g_x < X

0py,gy<Y0 \leq p_y, g_y < Y

Resources

IDI Open Programming Contest April 21st, 2012 - NTNU