MOG Training #7Ended |
Each input will consist of a single test case. Note that your program may be run multiple times on different inputs. Each test case will begin with a line with two integers $n$ $(1 \leq n \leq 2 \times 10^5)$ and $m$ $(0 \leq m \leq \text{min}(103 , n))$, where $n$ is the number of nodes in the tree, and $m$ is the number of nodes which are red. The nodes are numbered $1..n$.
Each of the next $n - 1$ lines will contain a single integer $p$ $(1 \leq p \leq n)$, which is the number of the parent of this node. The nodes are listed in order, starting with node $2$, then node $3$, and so on. Node $1$ is skipped, since it is the root. It is guaranteed that the nodes form a single tree, with a single root at node $1$ and no cycles.
Each of the next $m$ lines will contain single integer $r$ $(1 \leq r \leq n)$. These are the numbers of the
red nodes. No value of $r$ will be repeated.