ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

E1. Permutation Minimization by Deque

2021-10-03 10:30:31  阅读:300  来源: 互联网

标签:Deque end nn Minimization sequence deque permutation test E1


1. Problem

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][4,1,5,2], and adding same element to the end will produce [1,5,2,4][1,5,2,4].

The elements of the permutation are sequentially added to the initially empty deque, starting with p1p1 and finishing with pnpn. 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:

 1.add 33 to the end of the deque:deque has a sequence [3][3] in it;
 2.add 11 to the beginning of the deque:deque has a sequence [1,3][1,3] in it;
 3.add 22 to the end of the deque:deque has a sequence [1,3,2][1,3,2] in it;
 4.add 44 to the end of the deque:deque has a sequence [1,3,2,4][1,3,2,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][x1,x2,…,xn] is lexicographically smaller than the sequence [y1,y2,…,yn][y1,y2,…,yn] if there exists such i≤ni≤n that x1=y1x1=y1, x2=y2x2=y2, ……, xi−1=yi−1xi−1=yi−1 and xi<yixi<yi. 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.

Input

The first line contains an integer tt (1≤t≤10001≤t≤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 (1≤n≤2⋅1051≤n≤2⋅105) — permutation size. The second line of the description contains nn space-separated integers pipi (1≤pi≤n1≤pi≤n; all pipi are all unique) — elements of the permutation.

It is guaranteed that the sum of nn over all test cases does not exceed 2⋅1052⋅105.

Output

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.

Example

input

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

output

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

2. Accepted Code

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int t;
    scanf("%d",&t);
    int i,j,e;
    for(i=0; i<t; i++)
    {
        int n;
        scanf("%d",&n);
        int c[n];
        scanf("%d",&c[0]);

        for(j=1; j<n; j++)
        {
            int temp;
            scanf("%d", &temp);
            if(temp<c[0])
            {
                //数组集体右移一位后,往第一位加数字
                for(e=j; e>=1; e--)
                {
                    c[e] = c[e-1];
                }
                c[0] = temp;

            }
            else
            {
                c[j]=temp;
            }
        }
        for(j=0; j<n; j++)
        {
            printf("%d ",c[j]);
        }
        printf("\n");
    }
    return 0;
}

标签:Deque,end,nn,Minimization,sequence,deque,permutation,test,E1
来源: https://blog.csdn.net/CH_whale/article/details/120592320

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有