A12541 | Queen
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a rooted tree with vertices numerated from $1$ to $n$ . A tree is a connected graph without cycles. A rooted tree has a special vertex named root.
Ancestors of the vertex $i$ are all vertices on the path from the root to the vertex $i$ , except the vertex $i$ itself. The parent of the vertex $i$ is the nearest to the vertex $i$ ancestor of $i$ . Each vertex is a child of its parent. In the given tree the parent of the vertex $i$ is the vertex $p_i$ . For the root, the value $p_i$ is $-1$ .
An example of a tree with $n=8$ , the root is vertex $5$ . The parent of the vertex $2$ is vertex $3$ , the parent of the vertex $1$ is vertex $5$ . The ancestors of the vertex $6$ are vertices $4$ and $5$ , the ancestors of the vertex $7$ are vertices $8$ , $3$ and $5$ You noticed that some vertices do not respect others. In particular, if $c_i = 1$ , then the vertex $i$ does not respect any of its ancestors, and if $c_i = 0$ , it respects all of them.
You decided to delete vertices from the tree one by one. On each step you select such a non-root vertex that it does not respect its parent and none of its children respects it. If there are several such vertices, you select the one with the smallest number. When you delete this vertex $v$ , all children of $v$ become connected with the parent of $v$ .
An example of deletion of the vertex $7$ .Once there are no vertices matching the criteria for deletion, you stop the process. Print the order in which you will delete the vertices. Note that this order is unique.
Ancestors of the vertex $i$ are all vertices on the path from the root to the vertex $i$ , except the vertex $i$ itself. The parent of the vertex $i$ is the nearest to the vertex $i$ ancestor of $i$ . Each vertex is a child of its parent. In the given tree the parent of the vertex $i$ is the vertex $p_i$ . For the root, the value $p_i$ is $-1$ .
An example of a tree with $n=8$ , the root is vertex $5$ . The parent of the vertex $2$ is vertex $3$ , the parent of the vertex $1$ is vertex $5$ . The ancestors of the vertex $6$ are vertices $4$ and $5$ , the ancestors of the vertex $7$ are vertices $8$ , $3$ and $5$ You noticed that some vertices do not respect others. In particular, if $c_i = 1$ , then the vertex $i$ does not respect any of its ancestors, and if $c_i = 0$ , it respects all of them.
You decided to delete vertices from the tree one by one. On each step you select such a non-root vertex that it does not respect its parent and none of its children respects it. If there are several such vertices, you select the one with the smallest number. When you delete this vertex $v$ , all children of $v$ become connected with the parent of $v$ .
An example of deletion of the vertex $7$ .Once there are no vertices matching the criteria for deletion, you stop the process. Print the order in which you will delete the vertices. Note that this order is unique.
输入格式
The first line contains a single integer $n$ ( $1 \le n \le 10^5$ ) — the number of vertices in the tree.
The next $n$ lines describe the tree: the $i$ -th line contains two integers $p_i$ and $c_i$ ( $1 \le p_i \le n$ , $0 \le c_i \le 1$ ), where $p_i$ is the parent of the vertex $i$ , and $c_i = 0$ , if the vertex $i$ respects its parents, and $c_i = 1$ , if the vertex $i$ does not respect any of its parents. The root of the tree has $-1$ instead of the parent index, also, $c_i=0$ for the root. It is guaranteed that the values $p_i$ define a rooted tree with $n$ vertices.
The next $n$ lines describe the tree: the $i$ -th line contains two integers $p_i$ and $c_i$ ( $1 \le p_i \le n$ , $0 \le c_i \le 1$ ), where $p_i$ is the parent of the vertex $i$ , and $c_i = 0$ , if the vertex $i$ respects its parents, and $c_i = 1$ , if the vertex $i$ does not respect any of its parents. The root of the tree has $-1$ instead of the parent index, also, $c_i=0$ for the root. It is guaranteed that the values $p_i$ define a rooted tree with $n$ vertices.
输出格式
In case there is at least one vertex to delete, print the only line containing the indices of the vertices you will delete in the order you delete them. Otherwise print a single integer $-1$ .
输入输出样例
输入 #1
5 3 1 1 1 -1 0 2 1 3 0
输出 #1
1 2 4
输入 #2
5 -1 0 1 1 1 1 2 0 3 0
输出 #2
-1
输入 #3
8 2 1 -1 0 1 0 1 1 1 1 4 0 5 1 7 0
输出 #3
5
The deletion process in the first example is as follows (see the picture below, the vertices with $c_i=1$ are in yellow):
- first you will delete the vertex $1$ , because it does not respect ancestors and all its children (the vertex $2$ ) do not respect it, and $1$ is the smallest index among such vertices;
- the vertex $2$ will be connected with the vertex $3$ after deletion;
- then you will delete the vertex $2$ , because it does not respect ancestors and all its children (the only vertex $4$ ) do not respect it;
- the vertex $4$ will be connected with the vertex $3$ ;
- then you will delete the vertex $4$ , because it does not respect ancestors and all its children (there are none) do not respect it ([vacuous truth](https://en.wikipedia.org/wiki/Vacuous_truth));
- you will just delete the vertex $4$ ;
- there are no more vertices to delete.
In the second example you don't need to delete any vertex:
- vertices $2$ and $3$ have children that respect them;
- vertices $4$ and $5$ respect ancestors.
In the third example the tree will change this way:

- first you will delete the vertex $1$ , because it does not respect ancestors and all its children (the vertex $2$ ) do not respect it, and $1$ is the smallest index among such vertices;
- the vertex $2$ will be connected with the vertex $3$ after deletion;
- then you will delete the vertex $2$ , because it does not respect ancestors and all its children (the only vertex $4$ ) do not respect it;
- the vertex $4$ will be connected with the vertex $3$ ;
- then you will delete the vertex $4$ , because it does not respect ancestors and all its children (there are none) do not respect it ([vacuous truth](https://en.wikipedia.org/wiki/Vacuous_truth));
- you will just delete the vertex $4$ ;
- there are no more vertices to delete.
In the second example you don't need to delete any vertex:
- vertices $2$ and $3$ have children that respect them;
- vertices $4$ and $5$ respect ancestors.
In the third example the tree will change this way:

C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted