#P12852. [NERC 2020 Online] Color the Tree
[NERC 2020 Online] Color the Tree
题目描述
Christina has a rooted tree with vertices. Initially, all vertices are colored green, except for the root, which is colored red. Christina thinks that the tree is if two rules are satisfied:
- The root is colored red.
- If the vertex is colored red, all vertices on the shortest path between it and the root are also red.
Christina repeatedly performs the following operation on the tree --- chooses a vertex and changes its color (if it was red, colors it green; if it was green, colors it red). The following rules must be satisfied while performing the operations:
- The tree should stay beautiful.
- The coloring of vertices should be unique. That means there is no moment in the past when each vertex had the same color as it has right now.
Your task is to help Christina build the longest possible sequence of operations following the rules.
输入格式
The first line contains an integer () --- the number of vertices in the tree.
The second line contains integers ( for ), denoting parent vertices in the tree. The vertices in the tree are numbered from to , the root has number , the -th vertex has parent for .
输出格式
On the first line output an integer --- the maximum number of operations.
On the second line output integers (. is the number of the vertex that changes color during the corresponding operation.
If there are several possible longest sequences, output any one of them.
4
1 1 1
7
4 3 4 2 4 3 4
4
1 2 3
3
2 3 4
6
1 1 2 2 2
17
3 2 3 6 3 5 3 6 3 4 3 6 3 5 3 6 3
5
1 2 1 1
11
5 4 5 2 5 4 5 3 5 4 5
5
1 1 2 3
8
3 5 2 5 3 4 3 5