A12648 | Permutation recovery
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Vasya has written some permutation $p_1, p_2, \ldots, p_n$ of integers from $1$ to $n$ , so for all $1 \leq i \leq n$ it is true that $1 \leq p_i \leq n$ and all $p_1, p_2, \ldots, p_n$ are different. After that he wrote $n$ numbers $next_1, next_2, \ldots, next_n$ . The number $next_i$ is equal to the minimal index $i < j \leq n$ , such that $p_j > p_i$ . If there is no such $j$ let's let's define as $next_i = n + 1$ .
In the evening Vasya went home from school and due to rain, his notebook got wet. Now it is impossible to read some written numbers. Permutation and some values $next_i$ are completely lost! If for some $i$ the value $next_i$ is lost, let's say that $next_i = -1$ .
You are given numbers $next_1, next_2, \ldots, next_n$ (maybe some of them are equal to $-1$ ). Help Vasya to find such permutation $p_1, p_2, \ldots, p_n$ of integers from $1$ to $n$ , that he can write it to the notebook and all numbers $next_i$ , which are not equal to $-1$ , will be correct.
In the evening Vasya went home from school and due to rain, his notebook got wet. Now it is impossible to read some written numbers. Permutation and some values $next_i$ are completely lost! If for some $i$ the value $next_i$ is lost, let's say that $next_i = -1$ .
You are given numbers $next_1, next_2, \ldots, next_n$ (maybe some of them are equal to $-1$ ). Help Vasya to find such permutation $p_1, p_2, \ldots, p_n$ of integers from $1$ to $n$ , that he can write it to the notebook and all numbers $next_i$ , which are not equal to $-1$ , will be correct.
输入格式
The first line contains one integer $t$ — the number of test cases ( $1 \leq t \leq 100\,000$ ).
Next $2 \cdot t$ lines contains the description of test cases,two lines for each. The first line contains one integer $n$ — the length of the permutation, written by Vasya ( $1 \leq n \leq 500\,000$ ). The second line contains $n$ integers $next_1, next_2, \ldots, next_n$ , separated by spaces ( $next_i = -1$ or $i < next_i \leq n + 1$ ).
It is guaranteed, that the sum of $n$ in all test cases doesn't exceed $500\,000$ .
In hacks you can only use one test case, so $T = 1$ .
Next $2 \cdot t$ lines contains the description of test cases,two lines for each. The first line contains one integer $n$ — the length of the permutation, written by Vasya ( $1 \leq n \leq 500\,000$ ). The second line contains $n$ integers $next_1, next_2, \ldots, next_n$ , separated by spaces ( $next_i = -1$ or $i < next_i \leq n + 1$ ).
It is guaranteed, that the sum of $n$ in all test cases doesn't exceed $500\,000$ .
In hacks you can only use one test case, so $T = 1$ .
输出格式
Print $T$ lines, in $i$ -th of them answer to the $i$ -th test case.
If there is no such permutations $p_1, p_2, \ldots, p_n$ of integers from $1$ to $n$ , that Vasya could write, print the only number $-1$ .
In the other case print $n$ different integers $p_1, p_2, \ldots, p_n$ , separated by spaces ( $1 \leq p_i \leq n$ ). All defined values of $next_i$ which are not equal to $-1$ should be computed correctly $p_1, p_2, \ldots, p_n$ using defenition given in the statement of the problem. If there exists more than one solution you can find any of them.
If there is no such permutations $p_1, p_2, \ldots, p_n$ of integers from $1$ to $n$ , that Vasya could write, print the only number $-1$ .
In the other case print $n$ different integers $p_1, p_2, \ldots, p_n$ , separated by spaces ( $1 \leq p_i \leq n$ ). All defined values of $next_i$ which are not equal to $-1$ should be computed correctly $p_1, p_2, \ldots, p_n$ using defenition given in the statement of the problem. If there exists more than one solution you can find any of them.
输入输出样例
输入 #1
6 3 2 3 4 2 3 3 3 -1 -1 -1 3 3 4 -1 1 2 4 4 -1 4 5
输出 #1
1 2 3 2 1 2 1 3 -1 1 3 2 1 4
In the first test case for permutation $p = [1, 2, 3]$ Vasya should write $next = [2, 3, 4]$ , because each number in permutation is less than next. It's easy to see, that it is the only satisfying permutation.
In the third test case, any permutation can be the answer because all numbers $next_i$ are lost.
In the fourth test case, there is no satisfying permutation, so the answer is $-1$ .
In the third test case, any permutation can be the answer because all numbers $next_i$ are lost.
In the fourth test case, there is no satisfying permutation, so the answer is $-1$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted