题库练习 Kay and Snowflake
← 上一题 下一题 →

A10391 | Kay and Snowflake

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

After the piece of a devilish mirror hit the Kay's eye, he is no longer interested in the beauty of the roses. Now he likes to watch snowflakes.

Once upon a time, he found a huge snowflake that has a form of the tree (connected acyclic graph) consisting of $n$ nodes. The root of tree has index $1$ . Kay is very interested in the structure of this tree.

After doing some research he formed $q$ queries he is interested in. The $i$ -th query asks to find a centroid of the subtree of the node $v_{i}$ . Your goal is to answer all queries.

Subtree of a node is a part of tree consisting of this node and all it's descendants (direct or not). In other words, subtree of node $v$ is formed by nodes $u$ , such that node $v$ is present on the path from $u$ to root.

Centroid of a tree (or a subtree) is a node, such that if we erase it from the tree, the maximum size of the connected component will be at least two times smaller than the size of the initial tree (or a subtree).

输入格式

The first line of the input contains two integers $n$ and $q$ ( $2<=n<=300000$ , $1<=q<=300000$ ) — the size of the initial tree and the number of queries respectively.

The second line contains $n-1$ integer $p_{2},p_{3},...,p_{n}$ ( $1<=p_{i}<=n$ ) — the indices of the parents of the nodes from $2$ to $n$ . Node $1$ is a root of the tree. It's guaranteed that $p_{i}$ define a correct tree.

Each of the following $q$ lines contain a single integer $v_{i}$ ( $1<=v_{i}<=n$ ) — the index of the node, that define the subtree, for which we want to find a centroid.

输出格式

For each query print the index of a centroid of the corresponding subtree. If there are many suitable nodes, print any of them. It's guaranteed, that each subtree has at least one centroid.

输入输出样例

输入 #1
7 4
1 1 3 3 5 3
1
2
3
5
输出 #1
3
2
3
6
C++ 编辑器
输入
输出