题库练习 Messages on a Tree
← 上一题 下一题 →

A10613 | Messages on a Tree

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

题目描述

Alice and Bob are well-known for sending messages to each other. This time you have a rooted tree with Bob standing in the root node and copies of Alice standing in each of the other vertices. The root node has number $0$ , the rest are numbered $1$ through $n$ .

At some moments of time some copies of Alice want to send a message to Bob and receive an answer. We will call this copy the initiator. The process of sending a message contains several steps:

- The initiator sends the message to the person standing in the parent node and begins waiting for the answer.
- When some copy of Alice receives a message from some of her children nodes, she sends the message to the person standing in the parent node and begins waiting for the answer.
- When Bob receives a message from some of his child nodes, he immediately sends the answer to the child node where the message came from.
- When some copy of Alice (except for initiator) receives an answer she is waiting for, she immediately sends it to the child vertex where the message came from.
- When the initiator receives the answer she is waiting for, she doesn't send it to anybody.
- There is a special case: a copy of Alice can't wait for two answers at the same time, so if some copy of Alice receives a message from her child node while she already waits for some answer, she rejects the message and sends a message saying this back to the child node where the message came from. Then the copy of Alice in the child vertex processes this answer as if it was from Bob.
- The process of sending a message to a parent node or to a child node is instant but a receiver (a parent or a child) gets a message after $1$ second.

If some copy of Alice receives several messages from child nodes at the same moment while she isn't waiting for an answer, she processes the message from the initiator with the smallest number and rejects all the rest. If some copy of Alice receives messages from children nodes and also receives the answer she is waiting for at the same instant, then Alice first processes the answer, then immediately continue as normal with the incoming messages.

You are given the moments of time when some copy of Alice becomes the initiator and sends a message to Bob. For each message, find the moment of time when the answer (either from Bob or some copy of Alice) will be received by the initiator.

You can assume that if Alice wants to send a message (i.e. become the initiator) while waiting for some answer, she immediately rejects the message and receives an answer from herself in no time.

输入格式

The first line of input contains two integers $n$ and $m$ ( $1<=n,m<=200000$ ) — the number of nodes with Alices and the number of messages.

Second line contains $n$ integers $p_{1},p_{2},...,p_{n}$ ( $0<=p_{i}<i$ ). The integer $p_{i}$ is the number of the parent node of node $i$ .

The next $m$ lines describe the messages. The $i$ -th of them contains two integers $x_{i}$ and $t_{i}$ ( $1<=x_{i}<=n$ , $1<=t_{i}<=10^{9}$ ) — the number of the vertex of the initiator of the $i$ -th message and the time of the initiation (in seconds). The messages are given in order of increasing initiation time (i.e. $t_{i+1}>=t_{i}$ holds for $1<=i<m$ ). The pairs $(x_{i},t_{i})$ are distinct.

输出格式

Print $m$ integers — the $i$ -th of them is the moment of time when the answer for the $i$ -th message will be received by the initiator.

输入输出样例

输入 #1
6 3
0 1 2 3 2 5
4 6
6 9
5 11
输出 #1
14 13 11 
输入 #2
3 2
0 1 1
2 1
3 1
输出 #2
5 3 
输入 #3
8 3
0 1 1 2 3 3 4 5
6 1
8 2
4 5
输出 #3
7 6 11 
C++ 编辑器
输入
输出