#P16753. [GKS 2020 #B] Robot Path Decoding
[GKS 2020 #B] Robot Path Decoding
Problem Description
Your country's space agency has just landed a rover on a new planet. The planet's surface can be thought of as a grid of squares containing columns (numbered starting from from west to east) and rows (numbered starting from from north to south). Let denote the square in the -th column and the -th row. The rover begins on the square .
The rover can be maneuvered around on the surface of the planet by sending it a program, which contains a string of characters representing movements in the four cardinal directions. The robot executes each character of the string in order. The rover moves according to the following rules:
- N: Move one unit north.
- S: Move one unit south.
- E: Move one unit east.
- W: Move one unit west.
There is also a special instruction , where is a number between and (inclusive) and is a non-empty subprogram. This denotes that the robot should repeat the subprogram a total of times. For example:
- is equivalent to NWENWE.
- is equivalent to SEESEESEE.
- EEEE is equivalent to EEEENNNNSSSS.
Since the planet is a spheroid, the first and last columns are adjacent, so moving east from column will move the rover to column and moving south from row will move the rover to row . Similarly, moving west from column will move the rover to column and moving north from row will move the rover to row . Given a program that the robot will execute, determine the final position of the robot after it has finished all its movements.
Input Format
The first line of the input gives the number of test cases, . lines follow. Each line contains a single string: the program sent to the rover.
Output Format
For each test case, output one line containing Case #x: w h, where x is the test case number (starting from 1) and w h is the final square the rover finishes in.
4
SSSEEE
N
N3(S)N2(E)N
2(3(NW)2(W2(EE)W))
Case #1: 4 4
Case #2: 1 1000000000
Case #3: 3 1
Case #4: 3 999999995
Hint
In Sample Case #1, the rover moves three units south, then three units east.
In Sample Case #2, the rover moves one unit north. Since the planet is a torus, this moves it into row .
In Sample Case #3, the program given to the rover is equivalent to NSSSNEEN.
In Sample Case #4, the program given to the rover is equivalent to NWNWNWWEEEEWWEEEEWNWNWNWWEEEEWWEEEEW
Limits
.
The string represents a valid program.
The length of each program is between and characters inclusive.
Test Set 1
The total number of moves the robot will make in a single test case is at most .
Test Set 2
No additional constraints.