| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 2 초 | 2048 MB | 25 | 17 | 17 | 70.833% |
The Towers of Hanoi is a famous mathematical puzzle consisting of three rods and $n$ disks with diameters 1,ドル 2, \ldots, n$. Each of the three rods contains some disks, stacked in order of decreasing diameter from bottom to top, so that the smallest disk is always at the top. A valid move consists of taking the smallest disk from a rod and putting it on top of another rod. This move must preserve the sorted order: you can't put a larger disk onto a smaller one. The original puzzle's goal is to transfer all disks from one rod to another.
In this variation of the puzzle, you can only move the disks between adjacent rods: you can move a disk between rods 1ドル$ and 2ドル,ドル and between rods 2ドル$ and 3ドル,ドル but not between rods 1ドル$ and 3ドル$.
Given two configurations of this puzzle, find the minimum number of moves required to reach the second configuration starting from the first one. As this number might be large, print it modulo 998ドル,244円,353円$.
Each test contains multiple test cases. The first line contains the number of test cases $t$ (1ドル \le t \le 10^3$). Descriptions of the test cases follow.
The first line of each test case contains an integer $n,ドル denoting the number of disks involved (1ドル \le n \le 10^5$).
The second line contains $n$ integers $x_1, x_2, \ldots, x_n,ドル describing the initial configuration of the puzzle, where $x_i$ is the rod that contains the $i$-th disk ($x_i \in \{ 1, 2, 3 \}$).
The third line describes the final configuration of the puzzle in the same format.
It is guaranteed that the sum of $n$ over all test cases does not exceed 10ドル^5$.
For each test case, print the minimum number of moves required to reach the second configuration from the first one, modulo 998ドル,244円,353円$.
It can be shown that any two configurations are reachable from each other in this variation of the puzzle.
4 1 1 3 2 3 3 2 1 3 3 2 1 1 2 3 4 2 1 3 2 2 1 3 2
2 7 20 0