#P1225F. Tree Factory
Tree Factory
No submission language available for this problem.
Description
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 vertices labelled with distinct integers from to . The vertex labelled is the root of the tree, and for any non-root vertex the label of its parent is less than the label of .
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 such that its parent is not a root either. The operation consists of changing the parent of to its parent's parent . Note that parents of all other vertices remain unchanged, in particular, the subtree of 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 operations. Note that any hack that does not meet these conditions will be invalid.
The first line contains a single integer — the number of vertices in the tree ().
The second line contains integers — indices of parent vertices of respectively ().
In the first line, print distinct integers — the initial labelling of the bamboo blank starting from the root vertex ().
In the second line, print a single integer — the number of operations in your sequence ().
In the third line print integers describing operations in order. The -th operation consists of changing to . Each operation should be valid, i.e. neither nor can be the root of the tree at the moment.
Input
The first line contains a single integer — the number of vertices in the tree ().
The second line contains integers — indices of parent vertices of respectively ().
Output
In the first line, print distinct integers — the initial labelling of the bamboo blank starting from the root vertex ().
In the second line, print a single integer — the number of operations in your sequence ().
In the third line print integers describing operations in order. The -th operation consists of changing to . Each operation should be valid, i.e. neither nor can be the root of the tree at the moment.