CF1385G.Columns Swaps

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a table aa of size 2×n2 \times n (i.e. two rows and nn columns) consisting of integers from 11 to nn .

In one move, you can choose some column jj ( 1jn1 \le j \le n ) and swap values a1,ja_{1, j} and a2,ja_{2, j} in it. Each column can be chosen no more than once.

Your task is to find the minimum number of moves required to obtain permutations of size nn in both first and second rows of the table or determine if it is impossible to do that.

You have to answer tt independent test cases.

Recall that the permutation of size nn is such an array of size nn that contains each integer from 11 to nn exactly once (the order of elements doesn't matter).

输入格式

The first line of the input contains one integer tt ( 1t21041 \le t \le 2 \cdot 10^4 ) — the number of test cases. Then tt test cases follow.

The first line of the test case contains one integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ) — the number of columns in the table. The second line of the test case contains nn integers a1,1,a1,2,,a1,na_{1, 1}, a_{1, 2}, \dots, a_{1, n} ( 1a1,in1 \le a_{1, i} \le n ), where a1,ia_{1, i} is the ii -th element of the first row of the table. The third line of the test case contains nn integers a2,1,a2,2,,a2,na_{2, 1}, a_{2, 2}, \dots, a_{2, n} ( 1a2,in1 \le a_{2, i} \le n ), where a2,ia_{2, i} is the ii -th element of the second row of the table.

It is guaranteed that the sum of nn does not exceed 21052 \cdot 10^5 ( n2105\sum n \le 2 \cdot 10^5 ).

输出格式

For each test case print the answer: -1 if it is impossible to obtain permutation of size nn in both first and the second rows of the table, or one integer kk in the first line, where kk is the minimum number of moves required to obtain permutations in both rows, and kk distinct integers pos1,pos2,,poskpos_1, pos_2, \dots, pos_k in the second line ( 1posin1 \le pos_i \le n ) in any order — indices of columns in which you need to swap values to obtain permutations in both rows. If there are several answers, you can print any.

输入输出样例

  • 输入#1

    6
    4
    1 2 3 4
    2 3 1 4
    5
    5 3 5 1 4
    1 2 3 2 4
    3
    1 2 1
    3 3 2
    4
    1 2 2 1
    3 4 3 4
    4
    4 3 1 4
    3 2 2 1
    3
    1 1 2
    3 2 2

    输出#1

    0
    
    2
    2 3 
    1
    1 
    2
    3 4 
    2
    3 4 
    -1
首页