P7939 「Wdcfr-1」Alice Wins! (easy version)
Background

Description
**The difference between the versions is the limit of operations.**
Alice is a cute girl who has a lot of dolls.
There are $4\cdot n$ dolls playing *rock-paper-scissors*. They are divided into two teams: Team A and Team B. Each team contains $2\cdot n$ dolls.
A total of $2\cdot n$ rounds of the game will be played. In the $i$-th round, the $i$-th doll in Team A will play against the $i$-th doll in Team B. If the doll in Team A wins, Team A will get $1$ point. If it loses, Team A will lose $1$ point. If it ties, Team A will not get points.
Alice knows all the dolls' choices in this game. To be precise, she uses two arrays $a$ and $b$ to represent the choices of the dolls in the two teams. $a_i$ means the choice of the $i$-th doll in Team A, and $b_i$ means the choice of the $i$-th doll in Team B. In this question, we use $1$ for rock, $2$ for scissors, and $3$ for paper.
Now for **each team**, Alice wants to change the choices of **at most** $n$ dolls to make the score of Team A as high as possible.
Find the maximum score of Team A and its construction method. If there are multiple answers print any of them (you still have to maximize the score of Team A).
Input Format
Each test contains multiple testcases. The first line contains an integer $T$, the number of test cases.
For each test case, the first line contains one integer $n$.
Then two lines follow, containing an array $a$ of length $2\cdot n$ and an array $b$ of length $2\cdot n$, respectively.
Output Format
For each test case, print three lines.
The first line contains one integer, the maximum score of Team A.
The second line contains an array $a'$ of length $2\cdot n$, which represents the $a$ array after Alice's modification. For integers $1$ to $2\cdot n$, if $a_i \ne a'_i$, then it means you have modified the choice of one player in Team A.
The third line contains an array $b'$ of length $2\cdot n$, which represents the $b$ array after Alice's modification. For integers $1$ to $2\cdot n$, if $b_i \ne b'_i$, then it means you have modified the choice of one player in Team B.
Explanation/Hint
### Explanation
For the first test case, we can change $a_2$ to $1$ and $b_1$ to $2$. Then Team A can get $2$ points. It can be proved that this is the maximum score that Team A can get.
For the second test case, we can change $a_1$ to $3$ and $a_2$ to $1$.
### Constraints
$1\le T,n \le 10^5;\ 1\le a_i,b_i \le 3$. The sum of $n$ over all test cases $\le 10^5$.