CF BUDDY
← Problems·

1534C · Little Alawn's Puzzle

1300 · combinatorics, dp, dsu

Problem: When he's not training for IOI, Little Alawn enjoys playing with puzzles of various types to stimulate his brain. Today, he's playing with a puzzle that consists of a 2×n2 \times n grid where each row is a permutation of the numbers 1,2,3,,n1,2,3,\ldots,n.

The goal of Little Alawn's puzzle is to make sure no numbers on the same column or row are the same (we'll call this state of the puzzle as solved), and to achieve this he is able to swap the numbers in any column. However, after solving the puzzle many times, Little Alawn got bored and began wondering about the number of possible solved configurations of the puzzle he could achieve from an initial solved configuration only by swapping numbers in a column.

Unfortunately, Little Alawn got stuck while trying to solve this harder problem, so he was wondering if you could help him with it. Find the answer modulo 109+710^9+7.

Input Format: Each test contains multiple test cases. The first line contains the number of test cases tt (1t1041 \le t \le 10^4). Description of the test cases follows.

The first line of each test case contains a single integer nn (2n41052 \le n \le 4 \cdot 10^5).

The next two lines of each test case describe the initial state of the puzzle grid. Each line will be a permutation of the numbers 1,2,3,,n1,2,3,\ldots,n and the numbers in each column and row will be pairwise distinct.

It is guaranteed that the sum of nn over all test cases does not exceed 41054 \cdot 10^5.

Output Format: For each test case output a single integer, the number of possible solved configurations of the puzzle Little Alawn can achieve from an initial solved configuration only by swapping numbers in a column. As the answer can be very large, please output it modulo 109+710^9+7.

The answer for each test case should be on a separate line.

Note: The two possible puzzle configurations for example 11 are:

  • [1,4,2,3][1,4,2,3] in the first row and [3,2,1,4][3,2,1,4] in the second;
  • [3,2,1,4][3,2,1,4] in the first row and [1,4,2,3][1,4,2,3] in the second.

Sample Cases

Case 1

Input

2
4
1 4 2 3
3 2 1 4
8
2 6 5 1 4 3 7 8
3 8 7 5 1 2 4 6

Output

2
8

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback