Recently, Angie's math teacher began teaching the class about trees (the graph theory kind, of course). As homework, he gave everyone a rooted tree of x y
, and its answer is the LCA of nodes
Angie is feeling very demotivated and doesn't want to do her work. Can you solve the queries for her?
Constraints
Input Specification
The first line contains the integers
The second line contains
The next x y
.
Output Specification
For each query, output its answer on a new line.
Sample Input
10 5
1 2 1 1 4 2 1 6 9
3 9
10 7
4 4
1 3
2 3
Sample Output
1
1
4
1
2
Explanation
The tree from the sample input:
Comments