CF1579E1.Permutation Minimization by Deque

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

In fact, the problems E1 and E2 do not have much in common. You should probably think of them as two separate problems.

A permutation pp of size nn is given. A permutation of size nn is an array of size nn in which each integer from 11 to nn occurs exactly once. For example, [1,4,3,2][1, 4, 3, 2] and [4,2,1,3][4, 2, 1, 3] are correct permutations while [1,2,4][1, 2, 4] and [1,2,2][1, 2, 2] are not.

Let us consider an empty deque (double-ended queue). A deque is a data structure that supports adding elements to both the beginning and the end. So, if there are elements [1,5,2][1, 5, 2] currently in the deque, adding an element 44 to the beginning will produce the sequence [4,1,5,2][\color{red}{4}, 1, 5, 2] , and adding same element to the end will produce [1,5,2,4][1, 5, 2, \color{red}{4}] .

The elements of the permutation are sequentially added to the initially empty deque, starting with p1p_1 and finishing with pnp_n . Before adding each element to the deque, you may choose whether to add it to the beginning or the end.

For example, if we consider a permutation p=[3,1,2,4]p = [3, 1, 2, 4] , one of the possible sequences of actions looks like this:

\quad 1.add 33 to the end of the deque:deque has a sequence [3][\color{red}{3}] in it; \quad 2.add 11 to the beginning of the deque:deque has a sequence [1,3][\color{red}{1}, 3] in it; \quad 3.add 22 to the end of the deque:deque has a sequence [1,3,2][1, 3, \color{red}{2}] in it; \quad 4.add 44 to the end of the deque:deque has a sequence [1,3,2,4][1, 3, 2, \color{red}{4}] in it;Find the lexicographically smallest possible sequence of elements in the deque after the entire permutation has been processed.

A sequence [x1,x2,,xn][x_1, x_2, \ldots, x_n] is lexicographically smaller than the sequence [y1,y2,,yn][y_1, y_2, \ldots, y_n] if there exists such ini \leq n that x1=y1x_1 = y_1 , x2=y2x_2 = y_2 , \ldots , xi1=yi1x_{i - 1} = y_{i - 1} and xi<yix_i < y_i . In other words, if the sequences xx and yy have some (possibly empty) matching prefix, and the next element of the sequence xx is strictly smaller than the corresponding element of the sequence yy . For example, the sequence [1,3,2,4][1, 3, 2, 4] is smaller than the sequence [1,3,4,2][1, 3, 4, 2] because after the two matching elements [1,3][1, 3] in the start the first sequence has an element 22 which is smaller than the corresponding element 44 in the second sequence.

输入格式

The first line contains an integer tt ( 1t10001 \leq t \leq 1000 ) — the number of test cases.

The next 2t2t lines contain descriptions of the test cases.

The first line of each test case description contains an integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ) — permutation size. The second line of the description contains nn space-separated integers pip_i ( 1pin1 \le p_i \le n ; all pip_i are all unique) — elements of the permutation.

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

输出格式

Print tt lines, each line containing the answer to the corresponding test case. The answer to a test case should contain nn space-separated integer numbers — the elements of the lexicographically smallest permutation that is possible to find in the deque after executing the described algorithm.

输入输出样例

  • 输入#1

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

    输出#1

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

说明/提示

One of the ways to get a lexicographically smallest permutation [1,3,2,4][1, 3, 2, 4] from the permutation [3,1,2,4][3, 1, 2, 4] (the first sample test case) is described in the problem statement.

首页