A12925 | Tree Factory
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Bytelandian Tree Factory produces trees for all kinds of industrial applications. You have been tasked with optimizing the production of a certain type of tree for an especially large and important order.
The tree in question is a rooted tree with $n$ vertices labelled with distinct integers from $0$ to $n - 1$ . The vertex labelled $0$ is the root of the tree, and for any non-root vertex $v$ the label of its parent $p(v)$ is less than the label of $v$ .
All trees at the factory are made from bamboo blanks. A bamboo is a rooted tree such that each vertex has exactly one child, except for a single leaf vertex with no children. The vertices of a bamboo blank can be labelled arbitrarily before its processing is started.
To process a bamboo into another tree a single type of operation can be made: choose an arbitrary non-root vertex $v$ such that its parent $p(v)$ is not a root either. The operation consists of changing the parent of $v$ to its parent's parent $p(p(v))$ . Note that parents of all other vertices remain unchanged, in particular, the subtree of $v$ does not change.
Efficiency is crucial, hence you have to minimize the number of operations to make the desired tree from a bamboo blank. Construct any optimal sequence of operations to produce the desired tree.
Note that the labelling of the resulting tree has to coincide with the labelling of the desired tree. Formally, the labels of the roots have to be equal, and for non-root vertices with the same label the labels of their parents should be the same.
It is guaranteed that for any test present in this problem an answer exists, and further, an optimal sequence contains at most $10^6$ operations. Note that any hack that does not meet these conditions will be invalid.
The tree in question is a rooted tree with $n$ vertices labelled with distinct integers from $0$ to $n - 1$ . The vertex labelled $0$ is the root of the tree, and for any non-root vertex $v$ the label of its parent $p(v)$ is less than the label of $v$ .
All trees at the factory are made from bamboo blanks. A bamboo is a rooted tree such that each vertex has exactly one child, except for a single leaf vertex with no children. The vertices of a bamboo blank can be labelled arbitrarily before its processing is started.
To process a bamboo into another tree a single type of operation can be made: choose an arbitrary non-root vertex $v$ such that its parent $p(v)$ is not a root either. The operation consists of changing the parent of $v$ to its parent's parent $p(p(v))$ . Note that parents of all other vertices remain unchanged, in particular, the subtree of $v$ does not change.
Efficiency is crucial, hence you have to minimize the number of operations to make the desired tree from a bamboo blank. Construct any optimal sequence of operations to produce the desired tree.
Note that the labelling of the resulting tree has to coincide with the labelling of the desired tree. Formally, the labels of the roots have to be equal, and for non-root vertices with the same label the labels of their parents should be the same.
It is guaranteed that for any test present in this problem an answer exists, and further, an optimal sequence contains at most $10^6$ operations. Note that any hack that does not meet these conditions will be invalid.
输入格式
The first line contains a single integer $n$ — the number of vertices in the tree ( $2 \leq n \leq 10^5$ ).
The second line contains $n - 1$ integers $p(1), \ldots, p(n - 1)$ — indices of parent vertices of $1, \ldots, n - 1$ respectively ( $0 \leq p(i) < i$ ).
The second line contains $n - 1$ integers $p(1), \ldots, p(n - 1)$ — indices of parent vertices of $1, \ldots, n - 1$ respectively ( $0 \leq p(i) < i$ ).
输出格式
In the first line, print $n$ distinct integers $id_1, \ldots, id_n$ — the initial labelling of the bamboo blank starting from the root vertex ( $0 \leq id_i < n$ ).
In the second line, print a single integer $k$ — the number of operations in your sequence ( $0 \leq k \leq 10^6$ ).
In the third line print $k$ integers $v_1, \ldots, v_k$ describing operations in order. The $i$ -th operation consists of changing $p(v_i)$ to $p(p(v_i))$ . Each operation should be valid, i.e. neither $v_i$ nor $p(v_i)$ can be the root of the tree at the moment.
In the second line, print a single integer $k$ — the number of operations in your sequence ( $0 \leq k \leq 10^6$ ).
In the third line print $k$ integers $v_1, \ldots, v_k$ describing operations in order. The $i$ -th operation consists of changing $p(v_i)$ to $p(p(v_i))$ . Each operation should be valid, i.e. neither $v_i$ nor $p(v_i)$ can be the root of the tree at the moment.
输入输出样例
输入 #1
5 0 0 1 1
输出 #1
0 2 1 4 3 2 1 3
输入 #2
4 0 1 2
输出 #2
0 1 2 3 0
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted