B. Minimize the Permutation

You are given a permutation of length n. Recall that the permutation is an array consisting of n distinct integers from 1 to n in arbitrary order. For example, [2,3,1,5,4] is a permutation, but [1,2,2] is not a permutation (2 appears twice in the array) and [1,3,4] is also not a permutation (n=3 but there is 4 in the array).

You can perform at most n−1 operations with the given permutation (it is possible that you don't perform any operations at all). The i-th operation allows you to swap elements of the given permutation on positions i and i+1. Each operation can be performed at most once. The operations can be performed in arbitrary order.

Your task is to find the lexicographically minimum possible permutation obtained by performing some of the given operations in some order.

You can see the definition of the lexicographical order in the notes section.

You have to answer q independent test cases.

For example, let's consider the permutation [5,4,1,3,2]. The minimum possible permutation we can obtain is [1,5,2,4,3] and we can do it in the following way:

perform the second operation (swap the second and the third elements) and obtain the permutation [5,1,4,3,2];

perform the fourth operation (swap the fourth and the fifth elements) and obtain the permutation [5,1,4,2,3];

perform the third operation (swap the third and the fourth elements) and obtain the permutation [5,1,2,4,3].

perform the first operation (swap the first and the second elements) and obtain the permutation [1,5,2,4,3];

Another example is [1,2,4,3]. The minimum possible permutation we can obtain is [1,2,3,4] by performing the third operation (swap the third and the fourth elements).

Input

The first line of the input contains one integer q (1≤q≤100) — the number of test cases. Then q test cases follow.

The first line of the test case contains one integer n (1≤n≤100) — the number of elements in the permutation.

The second line of the test case contains n distinct integers from 1 to n — the given permutation.

Output

For each test case, print the answer on it — the lexicograhically minimum possible permutation obtained by performing some of the given operations in some order.

Example

input

4

5

5 4 1 3 2

4

1 2 4 3

1

1

4

4 3 2 1

output

1 5 2 4 3

1 2 3 4

1

1 4 3 2

Note

Recall that the permutation p of length n is lexicographically less than the permutation q of length n if there is such index i≤n that for all j from 1 to i−1 the condition pj=qj is satisfied, and pi<qi

p=[1,3,5,2,4] is less than q=[1,3,5,4,2] (such i=4 exists, that pi<qi and for each j<i holds pj=qj),

p=[1,2] is less than q=[2,1] (such i=1 exists, that pi<qi and for each j<i holds pj=qj).

题意

q次询问,每次询问给你长度为n的排列,然后你每次可以选择一个位置i和i+1的数字进行交换。但是每个位置只能交换一次,问你反转若干次后,这个排列最小是多少?

题解

贪心,每次选择最小的数往前走就好了。

代码

#include<bits/stdc++.h>
using namespace std; vector<int>p;
int pos[105];
int vis[105];
void solve(){
p.clear();
int n;
scanf("%d",&n);
memset(vis,0,sizeof(vis));
memset(pos,0,sizeof(pos));
for(int i=0;i<n;i++){
int x;scanf("%d",&x);
p.push_back(x);
pos[x]=i;
}
for(int i=1;i<=n;i++){
int flag = 1;
while(flag==1){
if(pos[i]>0&&vis[pos[i]-1]==0){
vis[pos[i]-1]=1;
int now=pos[i],pnow=pos[i]-1;
swap(p[now],p[pnow]);
swap(pos[p[now]],pos[p[pnow]]);
}else{
flag=0;
}
}
vis[pos[i]]=1;
//for(int i=0;i<p.size();i++){
// cout<<vis[i]<<" ";
//}
//cout<<endl;
}
for(int i=0;i<p.size();i++){
cout<<p[i]<<" ";
}
cout<<endl; }
int main(){
int t;
scanf("%d",&t);
while(t--)solve();
}

最新文章

  1. SCSS
  2. MVC开发经验总结
  3. SQL十进制和十六进制相互转换
  4. GitHub上不错的Android开源项目(三)
  5. ID和Name的区别
  6. WINDOWS 7下安装CVXOPT
  7. G - Strongly connected - hdu 4635(求连通分量)
  8. 《CSS网站布局实录》学习笔记(四)
  9. 关于iOS9中的App Transport Security相关说明及适配(转)
  10. Ubuntu 12.04 安装JDK 8和Eclipse
  11. ZooKeeper场景实践:(2)集中式配置管理
  12. 关于asp.net web form 和 asp.net mvc 的区别
  13. vmware ubuntu蓝屏
  14. [HNOI2015]落忆枫音
  15. shell编程第三天
  16. web前端利用turf.js生成等值线、等值面
  17. [转]Restrict关键字
  18. 安装GYP(Generate Your Projects)
  19. [bzoj1023][SHOI2008]cactus 仙人掌图 (动态规划)
  20. 关于Unity中的transform组件(二)

热门文章

  1. MS16-072域内中间人攻击
  2. IDEA项目更改项目名
  3. 入职小白随笔之Android四大组件——广播详解(broadcast)
  4. OpenStack与ZStack深度对比:架构、部署、计算、运维监控等
  5. LeetCode刷题191203 --回溯算法
  6. Linux(Centos7)下redis5安装、部署、开机自启
  7. [洛谷P1122][题解]最大子树和
  8. Nim 游戏
  9. 【Linux命令】磁盘分区,格式化,挂载命令,创建交换分区(fdisk,mkfs,mount,umount)
  10. PHP 将远程文件写入到pdf或者word