CF1611C.Polycarp Recovers the Permutation

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Polycarp wrote on a whiteboard an array pp of length nn , which is a permutation of numbers from 11 to nn . In other words, in pp each number from 11 to nn occurs exactly once.

He also prepared a resulting array aa , which is initially empty (that is, it has a length of 00 ).

After that, he did exactly nn steps. Each step looked like this:

  • Look at the leftmost and rightmost elements of pp , and pick the smaller of the two.
  • If you picked the leftmost element of pp , append it to the left of aa ; otherwise, if you picked the rightmost element of pp , append it to the right of aa .
  • The picked element is erased from pp .

Note that on the last step, pp has a length of 11 and its minimum element is both leftmost and rightmost. In this case, Polycarp can choose what role the minimum element plays. In other words, this element can be added to aa both on the left and on the right (at the discretion of Polycarp).

Let's look at an example. Let n=4n=4 , p=[3,1,4,2]p=[3, 1, 4, 2] . Initially a=[]a=[] . Then:

  • During the first step, the minimum is on the right (with a value of 22 ), so after this step, p=[3,1,4]p=[3,1,4] and a=[2]a=[2] (he added the value 22 to the right).
  • During the second step, the minimum is on the left (with a value of 33 ), so after this step, p=[1,4]p=[1,4] and a=[3,2]a=[3,2] (he added the value 33 to the left).
  • During the third step, the minimum is on the left (with a value of 11 ), so after this step, p=[4]p=[4] and a=[1,3,2]a=[1,3,2] (he added the value 11 to the left).
  • During the fourth step, the minimum is both left and right (this value is 44 ). Let's say Polycarp chose the right option. After this step, p=[]p=[] and a=[1,3,2,4]a=[1,3,2,4] (he added the value 44 to the right).

Thus, a possible value of aa after nn steps could be a=[1,3,2,4]a=[1,3,2,4] .

You are given the final value of the resulting array aa . Find any possible initial value for pp that can result the given aa , or determine that there is no solution.

输入格式

The first line of the input contains an integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases in the test.

Each test case consists of two lines. The first of them contains an integer nn ( 1n21051 \le n \le 2\cdot10^5 ) — the length of the array aa . The second line contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ain1 \le a_i \le n ) — the elements of the array aa . All elements of the aa array are distinct numbers.

It is guaranteed that the sum of the values nn over all test cases in the test does not exceed 21052\cdot10^5 .

输出格式

Print tt lines, each of the lines must contain the answer to the corresponding set of input data: numbers p1,p2,,pnp_1, p_2, \dots, p_n — any of the possible initial values of the array pp , which will lead to the given array aa . All elements of pp are distinct integers from 11 to nn . Thus, if there are several solutions, print any. If there is no solution, then print -1 on the line.

输入输出样例

  • 输入#1

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

    输出#1

    3 1 4 2
    1
    -1
    2 3 1

说明/提示

The first test case in the example is clarified in the main section of the problem statement. There may be other correct answers for this test set.

In the second test case, n=1n=1 . Thus, there is only one permutation that can be the answer: p=[1]p=[1] . Indeed, this is the answer to this test case.

In the third test case of the example, no matter what permutation you take as pp , after applying the nn steps, the result will differ from a=[1,3,5,4,2]a=[1, 3, 5, 4, 2] .

首页