B. Minimize the Permutation(Codeforces Round #598 (Div. 3))(模拟)

B. Minimize the Permutation(Codeforces Round #598 (Div. 3))(模拟)

time limit per test:1 second
memory limit per test:256 megabytes
input:standard input
output:standard output

Description

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

You can perform at most n 1 n−1 operations with the given permutation (it is possible that you don’t perform any operations at all). The i i -th operation allows you to swap elements of the given permutation on positions i i and i + 1 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 q independent test cases.

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

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

Another example is [ 1 , 2 , 4 , 3 ] [1,2,4,3] . The minimum possible 5. permutation we can obtain is [ 1 , 2 , 3 , 4 ] [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 ) q (1≤q≤100) — the number of test cases. Then q q test cases follow.

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

The second line of the test case contains n n distinct integers from 1 1 to n 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 n is lexicographically less than the permutation q q of length n n if there is such index i n i≤n that for all j j from 1 1 to i 1 i−1 the condition p j = q j p_j=q_j is satisfied, and p i < q i p_i<q_i . For example:

  • p = [ 1 , 3 , 5 , 2 , 4 ] p=[1,3,5,2,4] is less than q = [ 1 , 3 , 5 , 4 , 2 ] q=[1,3,5,4,2] (such i = 4 i=4 exists, that p i < q i p_i<q_i and for each j < i j<i holds p j = q j p_j=q_j ),
  • p = [ 1 , 2 ] p=[1,2] is less than q = [ 2 , 1 ] q=[2,1] (such i = 1 i=1 exists, that p i < q i p_i<q_i and for each j < i j<i holds p j = q j p_j=q_j ).

题解

因为n的范围不是很大,可以依次记录各个数字的位置,然后依次从 1 1 n n 搜索,贪心地尽可能让字典序小的数字排在前面,因为调过位置的区间不能再调位置了,所以就要维护一个变量 t e m tem ,用来指示不可用的范围,即新一轮循环的第一个可调换的位置。一直循环直到超出范围

代码

#include <iostream>
#include <algorithm>
#include <vector>
#define _for(i, a) for(int i = 0; i < (a); i++)
#define _rep(i, a, b) for(int i = (a); i <= (b); i++)
#define mem(a, b) memset(a, b, sizeof(a))
using namespace std;
typedef long long LL;

int b[105];
vector<int> a, c;
int n;

void init() {
	mem(b, 0);
	a.clear();
	c.clear();
}

void sol() {
	int tem = 0;
	_rep(i, 1, n) {
		if (tem > n) break;
		int t = b[i];
		if (t < tem) continue;
		for (int j = t - 1; j >= tem; j--) {
			swap(a[j], a[j + 1]);
			b[a[j]] = j;
			b[a[j + 1]] = j + 1;
		}
		if (tem == t) {
			c.push_back(a[tem]);
			tem++;
		}
		while (tem < t) {
			c.push_back(a[tem]);
			tem++;
		}
	}
	if (tem < n) c.push_back(a[tem]);
	_for(i, c.size()) {
		if (i == c.size() - 1) cout << c[i] << "\n";
		else cout << c[i] << " ";
	}
}

int main() {
	ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
	//freopen("in.txt", "r", stdin);

	int T;
	cin >> T;
	_for(q, T) {
		init();
		cin >> n;
		_for(i, n) {
			int x;
			cin >> x;
			a.push_back(x);
			b[x] = i;
		}
		sol();
	}
	return 0;
}

发布了163 篇原创文章 · 获赞 54 · 访问量 3万+

猜你喜欢

转载自blog.csdn.net/weixin_42856843/article/details/102907776