#P15686. [ICPC 2023 Jakarta R] Merge Not Sort

[ICPC 2023 Jakarta R] Merge Not Sort

题目描述

You are currently researching the Merge Sort algorithm. Merge Sort is a sorting algorithm that is based on the principle of Divide and Conquer. It works by dividing an array into two subarrays of equal length, sorting each subarrays, then merging the sorted subarrays back together to form the final sorted array.

You are particularly interested in the merging routine. Common merge implementation will combine two subarrays by iteratively comparing their first elements, and move the smaller one to a new merged array. More precisely, the merge algorithm can be presented by the following pseudocode.

    Merge(A[1..N], B[1..N]):
        C = []
        i = 1
        j = 1
        while i <= N AND j <= N:
            if A[i] < B[j]:
                append A[i] to C
                i = i + 1
            else:
                append B[j] to C
                j = j + 1 
        while i <= N:
            append A[i] to C
            i = i + 1 
        while j <= N:
            append B[j] to C
            j = j + 1 
        return C

During your research, you are keen to understand the behaviour of the merge algorithm when arrays A A and B B are not necessarily sorted. For example, if A=[3,1,6] A = [3, 1, 6] and B=[4,5,2] B = [4, 5, 2] , then Merge(A,B)=[3,1,4,5,2,6] \text{Merge}(A, B) = [3, 1, 4, 5, 2, 6] .

To further increase the understanding of the merge algorithm, you decided to work on the following problem. You are given an array C C of length 2N 2 \cdot N such that it is a permutation of 1 1 to 2N 2 \cdot N . Construct any two arrays A A and B B of the same length N N , such that Merge(A,B)=C \text{Merge}(A, B) = C , or determine if it is impossible to do so.

输入格式

The first line consists of an integer N N ( 1N1000 1 \leq N \leq 1000 ).

The following line consists of 2N 2 \cdot N integers Ci C_i . The array C C is a permutation of 1 1 to 2N 2 \cdot N .

输出格式

If it is impossible to construct two arrays A A and B B of length N N such that Merge(A,B)=C \text{Merge}(A, B) = C , then output -1.

Otherwise, output the arrays A A and B B in two lines. The first line consists of N N integers Ai A_i . The second line consists of N N integers Bi B_i . If there are several possible answers, output any of them.

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

提示

Explanation for the sample input/output #1

The solution A=[3,1,4] A = [3, 1, 4] and B=[5,2,6] B = [5, 2, 6] is also correct.

Explanation for the sample input/output #2

The solution A=[1,2,3,4] A = [1, 2, 3, 4] and B=[5,6,7,8] B = [5, 6, 7, 8] is also correct.