A13260 | Numbers on Tree
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Evlampiy was gifted a rooted tree. The vertices of the tree are numbered from $1$ to $n$ . Each of its vertices also has an integer $a_i$ written on it. For each vertex $i$ , Evlampiy calculated $c_i$ — the number of vertices $j$ in the subtree of vertex $i$ , such that $a_j < a_i$ .
Illustration for the second example, the first integer is $a_i$ and the integer in parentheses is $c_i$ After the new year, Evlampiy could not remember what his gift was! He remembers the tree and the values of $c_i$ , but he completely forgot which integers $a_i$ were written on the vertices.
Help him to restore initial integers!
Illustration for the second example, the first integer is $a_i$ and the integer in parentheses is $c_i$ After the new year, Evlampiy could not remember what his gift was! He remembers the tree and the values of $c_i$ , but he completely forgot which integers $a_i$ were written on the vertices.
Help him to restore initial integers!
输入格式
The first line contains an integer $n$ $(1 \leq n \leq 2000)$ — the number of vertices in the tree.
The next $n$ lines contain descriptions of vertices: the $i$ -th line contains two integers $p_i$ and $c_i$ ( $0 \leq p_i \leq n$ ; $0 \leq c_i \leq n-1$ ), where $p_i$ is the parent of vertex $i$ or $0$ if vertex $i$ is root, and $c_i$ is the number of vertices $j$ in the subtree of vertex $i$ , such that $a_j < a_i$ .
It is guaranteed that the values of $p_i$ describe a rooted tree with $n$ vertices.
The next $n$ lines contain descriptions of vertices: the $i$ -th line contains two integers $p_i$ and $c_i$ ( $0 \leq p_i \leq n$ ; $0 \leq c_i \leq n-1$ ), where $p_i$ is the parent of vertex $i$ or $0$ if vertex $i$ is root, and $c_i$ is the number of vertices $j$ in the subtree of vertex $i$ , such that $a_j < a_i$ .
It is guaranteed that the values of $p_i$ describe a rooted tree with $n$ vertices.
输出格式
If a solution exists, in the first line print "YES", and in the second line output $n$ integers $a_i$ $(1 \leq a_i \leq {10}^{9})$ . If there are several solutions, output any of them. One can prove that if there is a solution, then there is also a solution in which all $a_i$ are between $1$ and $10^9$ .
If there are no solutions, print "NO".
If there are no solutions, print "NO".
输入输出样例
输入 #1
3 2 0 0 2 2 0
输出 #1
YES 1 2 1
输入 #2
5 0 1 1 3 2 1 3 0 2 0
输出 #2
YES 2 3 2 1 2
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted