A10905 | Mike and code of a permutation
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Mike has discovered a new way to encode permutations. If he has a permutation $P=[p_{1},p_{2},...,p_{n}]$ , he will encode it in the following way:
Denote by $A=[a_{1},a_{2},...,a_{n}]$ a sequence of length $n$ which will represent the code of the permutation. For each $i$ from $1$ to $n$ sequentially, he will choose the smallest unmarked $j$ ( $1<=j<=n$ ) such that $p_{i}<p_{j}$ and will assign to $a_{i}$ the number $j$ (in other words he performs $a_{i}=j$ ) and will mark $j$ . If there is no such $j$ , he'll assign to $a_{i}$ the number $-1$ (he performs $a_{i}=-1$ ).
Mike forgot his original permutation but he remembers its code. Your task is simple: find any permutation such that its code is the same as the code of Mike's original permutation.
You may assume that there will always be at least one valid permutation.
Denote by $A=[a_{1},a_{2},...,a_{n}]$ a sequence of length $n$ which will represent the code of the permutation. For each $i$ from $1$ to $n$ sequentially, he will choose the smallest unmarked $j$ ( $1<=j<=n$ ) such that $p_{i}<p_{j}$ and will assign to $a_{i}$ the number $j$ (in other words he performs $a_{i}=j$ ) and will mark $j$ . If there is no such $j$ , he'll assign to $a_{i}$ the number $-1$ (he performs $a_{i}=-1$ ).
Mike forgot his original permutation but he remembers its code. Your task is simple: find any permutation such that its code is the same as the code of Mike's original permutation.
You may assume that there will always be at least one valid permutation.
输入格式
The first line contains single integer $n$ ( $1<=n<=500000$ ) — length of permutation.
The second line contains $n$ space-separated integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=n$ or $a_{i}=-1$ ) — the code of Mike's permutation.
You may assume that all positive values from $A$ are different.
The second line contains $n$ space-separated integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=n$ or $a_{i}=-1$ ) — the code of Mike's permutation.
You may assume that all positive values from $A$ are different.
输出格式
In first and only line print $n$ numbers $p_{1},p_{2},...,p_{n}$ ( $1<=p_{i}<=n$ ) — a permutation $P$ which has the same code as the given one. Note that numbers in permutation are distinct.
输入输出样例
输入 #1
6 2 -1 1 5 -1 4
输出 #1
2 6 1 4 5 3
输入 #2
8 2 -1 4 -1 6 -1 8 -1
输出 #2
1 8 2 7 3 6 4 5
For the permutation from the first example:
$i=1$ , the smallest $j$ is $2$ because $p_{2}=6>p_{1}=2$ .
$i=2$ , there is no $j$ because $p_{2}=6$ is the greatest element in the permutation.
$i=3$ , the smallest $j$ is $1$ because $p_{1}=2>p_{3}=1$ .
$i=4$ , the smallest $j$ is $5$ ( $2$ was already marked) because $p_{5}=5>p_{4}=4$ .
$i=5$ , there is no $j$ because $2$ is already marked.
$i=6$ , the smallest $j$ is $4$ because $p_{4}=4>p_{6}=3$ .
$i=1$ , the smallest $j$ is $2$ because $p_{2}=6>p_{1}=2$ .
$i=2$ , there is no $j$ because $p_{2}=6$ is the greatest element in the permutation.
$i=3$ , the smallest $j$ is $1$ because $p_{1}=2>p_{3}=1$ .
$i=4$ , the smallest $j$ is $5$ ( $2$ was already marked) because $p_{5}=5>p_{4}=4$ .
$i=5$ , there is no $j$ because $2$ is already marked.
$i=6$ , the smallest $j$ is $4$ because $p_{4}=4>p_{6}=3$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted