CF1670C.Where is the Pizza?

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

While searching for the pizza, baby Hosssam came across two permutations aa and bb of length nn .

Recall that a permutation is an array consisting of nn distinct integers from 11 to nn in arbitrary order. For example, [2,3,1,5,4][2,3,1,5,4] is a permutation, but [1,2,2][1,2,2] is not a permutation ( 22 appears twice in the array) and [1,3,4][1,3,4] is also not a permutation ( n=3n=3 but there is 44 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 nn .

Specifically, he mixed up the permutations to form a new array cc in the following way.

  • For each ii ( 1in1\le i\le n ), he either made ci=aic_i=a_i or ci=bic_i=b_i .
  • The array cc is a permutation.

You know permutations aa , bb , and values at some positions in cc . Please count the number different permutations cc that are consistent with the described process and the given values. Since the answer can be large, print it modulo 109+710^9+7 .

It is guaranteed that there exists at least one permutation cc that satisfies all the requirements.

输入格式

The first line contains an integer tt ( 1t1051 \le t \le 10^5 ) — the number of test cases.

The first line of each test case contains a single integer nn ( 1n1051\le n\le 10^5 ) — the length of the permutations.

The next line contains nn distinct integers a1,a2,,ana_1,a_2,\ldots,a_n ( 1ain1\le a_i\le n ) — the first permutation.

The next line contains nn distinct integers b1,b2,,bnb_1,b_2,\ldots,b_n ( 1bin1\le b_i\le n ) — the second permutation.

The next line contains nn distinct integers d1,d2,,dnd_1,d_2,\ldots,d_n ( did_i is either 00 , aia_i , or bib_i ) — the description of the known values of cc . If di=0d_i=0 , then there are no requirements on the value of cic_i . Otherwise, it is required that ci=dic_i=d_i .

It is guaranteed that there exists at least one permutation cc that satisfies all the requirements.

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

输出格式

For each test case, print the number of possible permutations cc , modulo 109+710^9+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 44 distinct permutation that can be made using the process: [2,3,1,4,5,6,7][2,3,1,4,5,6,7] , [2,3,1,7,6,5,4][2,3,1,7,6,5,4] , [2,3,1,4,6,5,7][2,3,1,4,6,5,7] , [2,3,1,7,5,6,4][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][1] .

In the third test case, there are 22 distinct permutation that can be made using the process: [6,5,2,1,4,3][6,5,2,1,4,3] , [6,5,3,1,4,2][6,5,3,1,4,2] .

In the fourth test case, there are 22 distinct permutation that can be made using the process: [1,2,8,7,4,3,6,5][1,2,8,7,4,3,6,5] , [1,6,4,7,2,3,8,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][1,9,2,3,4,10,8,6,7,5] .

首页