문제
Farmer John is taking Bessie and the cows on a cruise! They are sailing on a network of rivers with N ports (
At each port, the tour guides choose either the "left" river or the "right" river to sail down next, but they keep repeating the same choices over and over. More specifically, the tour guides have chosen a short sequence of M directions (
입력
Line 1: Three space-separated integers N, M, and K.
Lines
2..N+1 : Line i+1 has two space-separated integers, representing the number of the ports that port i's left and right rivers lead to, respectively.Line
N+2 : M space-separated characters, either 'L' or 'R'. 'L' represents a choice of 'left' and 'R' represents a choice of 'right'.
출력
Line 1: A single integer giving the number of the port where Bessie's cruise ends.
예제1
43 3
2 4
3 1
4 2
1 3
L L R
4
Input Details
The port numbers are arranged clockwise in a circle, with 'L' being a clockwise rotation and 'R' being a counterclockwise rotation. The sequence taken is LLRLLRLLR.
Output Details
After the first iteration of the sequence of directions, Bessie is at port 2 (