#P9021. [USACO23JAN] Subtree Activation P

[USACO23JAN] Subtree Activation P

题目描述

For the New Year celebration, Bessie and her friends have constructed a giant tree with many glowing ornaments. Bessie has the ability to turn the ornaments on and off through remote control. Before the sun rises, she wants to toggle some of the ornaments in some order (possibly toggling an ornament more than once) such that the tree starts and ends with no ornaments on. Bessie thinks the tree looks cool if the set of activated ornaments is exactly a subtree rooted at some vertex. She wants the order of ornaments she toggles to satisfy the property that, for every subtree, at some point in time it was exactly the set of all turned on ornaments. Additionally, it takes energy to switch on and off ornaments, and Bessie does not want to waste energy, so she wants to find the minimum number of toggles she can perform.

Formally, you have a tree with vertices labeled 1N(2N2105)1 \cdots N (2 \le N \le 2 \cdot 10^5) rooted at 11. Each vertex is initially inactive. In one operation, you can toggle the state of a single vertex from inactive to active or vice versa. Output the minimum possible length of a sequence of operations satisfying both of the following conditions:

  • Define the subtree rooted at a vertex rr to consist of all vertices vv such that rr lies on the path from 11 to vv inclusive. For every one of the NN subtrees of the tree, there is a moment in time when the set of active vertices is precisely those in that subtree.
  • Every vertex is inactive after the entire sequence of operations.

输入格式

The first line contains NN.

The second line contains p2pN(1pi<i)p_2 \cdots p_N (1 \le p_i<i), where pip_i denotes the parent of vertex ii in the tree.

输出格式

Output the minimum possible length.

3
1 1
6

提示

Explanation for Sample 1

There are three subtrees, corresponding to {1,2,3}\{1,2,3\}, {2}\{2\}, and {3}\{3\}. Here is one sequence of operations of the minimum possible length:

activate 2
(activated vertices form the subtree rooted at 2)
activate 1
activate 3
(activated vertices form the subtree rooted at 1)
deactivate 1
deactivate 2
(activated vertices form the subtree rooted at 3)
deactivate 3

Scoring

  • Inputs 232-3: N8N \le 8
  • Inputs 494-9: N40N \le 40
  • Inputs 101510-15: N5000N \le 5000
  • Inputs 162116-21: No additional constraints.