CF1670C.Where is the Pizza?
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
While searching for the pizza, baby Hosssam came across two permutations a and b of length n .
Recall that a permutation is an array consisting of n distinct integers from 1 to n in arbitrary order. For example, [2,3,1,5,4] is a permutation, but [1,2,2] is not a permutation ( 2 appears twice in the array) and [1,3,4] is also not a permutation ( n=3 but there is 4 in the array).
Baby Hosssam forgot about the pizza and started playing around with the two permutations. While he was playing with them, some elements of the first permutation got mixed up with some elements of the second permutation, and to his surprise those elements also formed a permutation of size n .
Specifically, he mixed up the permutations to form a new array c in the following way.
- For each i ( 1≤i≤n ), he either made ci=ai or ci=bi .
- The array c is a permutation.
You know permutations a , b , and values at some positions in c . Please count the number different permutations c that are consistent with the described process and the given values. Since the answer can be large, print it modulo 109+7 .
It is guaranteed that there exists at least one permutation c that satisfies all the requirements.
输入格式
The first line contains an integer t ( 1≤t≤105 ) — the number of test cases.
The first line of each test case contains a single integer n ( 1≤n≤105 ) — the length of the permutations.
The next line contains n distinct integers a1,a2,…,an ( 1≤ai≤n ) — the first permutation.
The next line contains n distinct integers b1,b2,…,bn ( 1≤bi≤n ) — the second permutation.
The next line contains n distinct integers d1,d2,…,dn ( di is either 0 , ai , or bi ) — the description of the known values of c . If di=0 , then there are no requirements on the value of ci . Otherwise, it is required that ci=di .
It is guaranteed that there exists at least one permutation c that satisfies all the requirements.
It is guaranteed that the sum of n over all test cases does not exceed 5⋅105 .
输出格式
For each test case, print the number of possible permutations c , modulo 109+7 .
输入输出样例
输入#1
9 7 1 2 3 4 5 6 7 2 3 1 7 6 5 4 2 0 1 0 0 0 0 1 1 1 0 6 1 5 2 4 6 3 6 5 3 1 4 2 6 0 0 0 0 0 8 1 6 4 7 2 3 8 5 3 2 8 1 4 5 6 7 1 0 0 7 0 3 0 5 10 1 8 6 2 4 7 9 3 10 5 1 9 2 3 4 10 8 6 7 5 1 9 2 3 4 10 8 6 7 5 7 1 2 3 4 5 6 7 2 3 1 7 6 5 4 0 0 0 0 0 0 0 5 1 2 3 4 5 1 2 3 4 5 0 0 0 0 0 5 1 2 3 4 5 1 2 3 5 4 0 0 0 0 0 3 1 2 3 3 1 2 0 0 0
输出#1
4 1 2 2 1 8 1 2 2
说明/提示
In the first test case, there are 4 distinct permutation that can be made using the process: [2,3,1,4,5,6,7] , [2,3,1,7,6,5,4] , [2,3,1,4,6,5,7] , [2,3,1,7,5,6,4] .
In the second test case, there is only one distinct permutation that can be made using the process: [1] .
In the third test case, there are 2 distinct permutation that can be made using the process: [6,5,2,1,4,3] , [6,5,3,1,4,2] .
In the fourth test case, there are 2 distinct permutation that can be made using the process: [1,2,8,7,4,3,6,5] , [1,6,4,7,2,3,8,5] .
In the fifth test case, there is only one distinct permutation that can be made using the process: [1,9,2,3,4,10,8,6,7,5] .