A12990 | Minimize the Permutation
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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:
1. perform the second operation (swap the second and the third elements) and obtain the permutation $[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]$ ;
3. perform the third operation (swap the third and the fourth elements) and obtain the permutation $[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]$ ;
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).
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:
1. perform the second operation (swap the second and the third elements) and obtain the permutation $[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]$ ;
3. perform the third operation (swap the third and the fourth elements) and obtain the permutation $[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]$ ;
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).
输入格式
The first line of the input contains one integer $q$ ( $1 \le q \le 100$ ) — the number of test cases. Then $q$ test cases follow.
The first line of the test case contains one integer $n$ ( $1 \le n \le 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.
The first line of the test case contains one integer $n$ ( $1 \le n \le 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.
输出格式
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.
输入输出样例
输入 #1
4 5 5 4 1 3 2 4 1 2 4 3 1 1 4 4 3 2 1
输出 #1
1 5 2 4 3 1 2 3 4 1 1 4 3 2
Recall that the permutation $p$ of length $n$ is lexicographically less than the permutation $q$ of length $n$ if there is such index $i \le n$ that for all $j$ from $1$ to $i - 1$ the condition $p_j = q_j$ is satisfied, and $p_i < q_i$ . For example:
- $p = [1, 3, 5, 2, 4]$ is less than $q = [1, 3, 5, 4, 2]$ (such $i=4$ exists, that $p_i < q_i$ and for each $j < i$ holds $p_j = q_j$ ),
- $p = [1, 2]$ is less than $q = [2, 1]$ (such $i=1$ exists, that $p_i < q_i$ and for each $j < i$ holds $p_j = q_j$ ).
- $p = [1, 3, 5, 2, 4]$ is less than $q = [1, 3, 5, 4, 2]$ (such $i=4$ exists, that $p_i < q_i$ and for each $j < i$ holds $p_j = q_j$ ),
- $p = [1, 2]$ is less than $q = [2, 1]$ (such $i=1$ exists, that $p_i < q_i$ and for each $j < i$ holds $p_j = q_j$ ).
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted