luogu#P12112. [NWRRC2024] Hanoi Towers Reloaded

[NWRRC2024] Hanoi Towers Reloaded

题目描述

The Towers of Hanoi\textit{Towers of Hanoi} is a famous mathematical puzzle consisting of three rods and nn disks with diameters 1,2,,n1, 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\textbf{between adjacent rods}: you can move a disk between rods 11 and 22, and between rods 22 and 33, but not between rods 11 and 33.

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 998244353998\,244\,353.

输入格式

Each test contains multiple test cases. The first line contains the number of test cases tt (1t1031 \le t \le 10^3). Descriptions of the test cases follow.

The first line of each test case contains an integer nn, denoting the number of disks involved (1n1051 \le n \le 10^5).

The second line contains nn integers x1,x2,,xnx_1, x_2, \ldots, x_n, describing the initial configuration of the puzzle, where xix_i is the rod that contains the ii-th disk (xi{1,2,3}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 nn over all test cases does not exceed 10510^5.

输出格式

For each test case, print the minimum number of moves required to reach the second configuration from the first one, modulo 998244353998\,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