A12922 | Box
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Permutation $p$ is a sequence of integers $p=[p_1, p_2, \dots, p_n]$ , consisting of $n$ distinct (unique) positive integers between $1$ and $n$ , inclusive. For example, the following sequences are permutations: $[3, 4, 1, 2]$ , $[1]$ , $[1, 2]$ . The following sequences are not permutations: $[0]$ , $[1, 2, 1]$ , $[2, 3]$ , $[0, 1, 2]$ .
The important key is in the locked box that you need to open. To open the box you need to enter secret code. Secret code is a permutation $p$ of length $n$ .
You don't know this permutation, you only know the array $q$ of prefix maximums of this permutation. Formally:
- $q_1=p_1$ ,
- $q_2=\max(p_1, p_2)$ ,
- $q_3=\max(p_1, p_2,p_3)$ ,
- ...
- $q_n=\max(p_1, p_2,\dots,p_n)$ .
You want to construct any possible suitable permutation (i.e. any such permutation, that calculated $q$ for this permutation is equal to the given array).
The important key is in the locked box that you need to open. To open the box you need to enter secret code. Secret code is a permutation $p$ of length $n$ .
You don't know this permutation, you only know the array $q$ of prefix maximums of this permutation. Formally:
- $q_1=p_1$ ,
- $q_2=\max(p_1, p_2)$ ,
- $q_3=\max(p_1, p_2,p_3)$ ,
- ...
- $q_n=\max(p_1, p_2,\dots,p_n)$ .
You want to construct any possible suitable permutation (i.e. any such permutation, that calculated $q$ for this permutation is equal to the given array).
输入格式
The first line contains integer number $t$ ( $1 \le t \le 10^4$ ) — the number of test cases in the input. Then $t$ test cases follow.
The first line of a test case contains one integer $n$ $(1 \le n \le 10^{5})$ — the number of elements in the secret code permutation $p$ .
The second line of a test case contains $n$ integers $q_1, q_2, \dots, q_n$ $(1 \le q_i \le n)$ — elements of the array $q$ for secret permutation. It is guaranteed that $q_i \le q_{i+1}$ for all $i$ ( $1 \le i < n$ ).
The sum of all values $n$ over all the test cases in the input doesn't exceed $10^5$ .
The first line of a test case contains one integer $n$ $(1 \le n \le 10^{5})$ — the number of elements in the secret code permutation $p$ .
The second line of a test case contains $n$ integers $q_1, q_2, \dots, q_n$ $(1 \le q_i \le n)$ — elements of the array $q$ for secret permutation. It is guaranteed that $q_i \le q_{i+1}$ for all $i$ ( $1 \le i < n$ ).
The sum of all values $n$ over all the test cases in the input doesn't exceed $10^5$ .
输出格式
For each test case, print:
- If it's impossible to find such a permutation $p$ , print "-1" (without quotes).
- Otherwise, print $n$ distinct integers $p_1, p_2, \dots, p_n$ ( $1 \le p_i \le n$ ). If there are multiple possible answers, you can print any of them.
- If it's impossible to find such a permutation $p$ , print "-1" (without quotes).
- Otherwise, print $n$ distinct integers $p_1, p_2, \dots, p_n$ ( $1 \le p_i \le n$ ). If there are multiple possible answers, you can print any of them.
输入输出样例
输入 #1
4 5 1 3 4 5 5 4 1 1 3 4 2 2 2 1 1
输出 #1
1 3 4 5 2 -1 2 1 1
In the first test case of the example answer $[1,3,4,5,2]$ is the only possible answer:
- $q_{1} = p_{1} = 1$ ;
- $q_{2} = \max(p_{1}, p_{2}) = 3$ ;
- $q_{3} = \max(p_{1}, p_{2}, p_{3}) = 4$ ;
- $q_{4} = \max(p_{1}, p_{2}, p_{3}, p_{4}) = 5$ ;
- $q_{5} = \max(p_{1}, p_{2}, p_{3}, p_{4}, p_{5}) = 5$ .
It can be proved that there are no answers for the second test case of the example.
- $q_{1} = p_{1} = 1$ ;
- $q_{2} = \max(p_{1}, p_{2}) = 3$ ;
- $q_{3} = \max(p_{1}, p_{2}, p_{3}) = 4$ ;
- $q_{4} = \max(p_{1}, p_{2}, p_{3}, p_{4}) = 5$ ;
- $q_{5} = \max(p_{1}, p_{2}, p_{3}, p_{4}, p_{5}) = 5$ .
It can be proved that there are no answers for the second test case of the example.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted