[Solution] Wiggle Walk Kick Start Session Solution - Kick Start 2022
Banny has just bought a new programmable robot. Eager to test his coding skills, he has placed the robot in a grid of squares with rows (numbered to from north to south) and columns (numbered to from west to east). The square in row and column is denoted .
Initially the robot starts in the square (, ). Banny will give the robot instructions. Each instruction is one of N
, S
, E
, or W
, instructing the robot to move one square north, south, east, or west respectively.
If the robot moves into a square that it has been in before, the robot will continue moving in the same direction until it reaches a square that it has not been in before. Banny will never give the robot an instruction that will cause it to move out of the grid.
Can you help Banny determine which square the robot will finish in, after following the instructions?
Input
The first line of the input gives the number of test cases, . test cases follow. Each test case starts with a line containing the five integers , , , , and , the number of instructions, the number of rows, the number of columns, the robot's starting row, and the robot's starting column, respectively.
Then, another line follows containing a single string consisting of characters; the -th of these characters is the -th instruction Banny gives the robot (one of N
, S
, E
, or W
, as described above).
Output
For each test case, output one line containing Case #:
, where is the test case number (starting from 1), is the row the robot finishes in, and is the column the robot finishes in.
Limits
Memory limit: 1 GB.
.
.
.
.
.
The instructions will not cause the robot to move out of the grid.
Test Set 1
Time limit: 20 seconds.
.
Test Set 2
Time limit: 60 seconds.
.
No comments:
Post a Comment