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

传送门
B. Minimize the Permutation
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
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
inputCopy
4
5
5 4 1 3 2
4
1 2 4 3
1
1
4
4 3 2 1
outputCopy
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

p=[1,3,5,2,4] is less than q=[1,3,5,4,2] (such i=4 exists, that pi p=[1,2] is less than q=[2,1] (such i=1 exists, that pi

思路:倒过来的冒泡排序,记录下标判定是否能进行交换

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define PI acos(-1.0)
#define LL long long
using namespace std;
int gcd(int a, int b) {return a % b ? gcd(b, a % b) : b;}
int lcm(int a, int b) {return a * b / gcd(a, b);}
 
 
int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	int t;
	cin >> t;
	while (t--) {
		int n, i, x, j;
		cin >> n;
		int a[105], b[105], swp[105] = { 0 };
		for (i = 0; i < n; i++)cin >> a[i];
		for (i = n - 2; i >= 0; i--) {
			for (j = i; j < n - 1; j++) {
				if (a[j] > a[j + 1] && swp[j] == 0) {
					swap(a[j], a[j + 1]);
					swp[j] = 1;
				}
			}
		}
		for (i = 0; i < n; i++)cout << a[i] << " ";
		cout << endl;
	}
	return 0;
}

你可能感兴趣的:(Codeforces Round #598 (Div. 3)B.Minimize the Permutation)