Velma and Queries

4.3

7 votes
Algorithms, Binary Search, Depth First Search, Easy, Searching
Problem

The "Mystery Incorporated" once went for an investigation. Since Scooby and Shaggy always create havoc during investigation, Velma decided to give them a question so as to keep them busy.
Velma gave them a tree consisting of N nodes, rooted at node 1 with a number in each node, and asked them several queries. Each query was of the form u l and they had to find the sum of values of all nodes situated at a depth l and were in the subtree of u.
Since Scooby and Shaggy are dumb, they need your help in solving this problem.

Input

The first line will contain the number of test cases T.
The first line of each test case will contain two integers N and Q (1 ≤ N, Q ≤ 100,000) - the number of nodes and the number of queries.
The second line of each test case will contain N integers a1, a2, ..., aN, where ai (1 ≤ ai ≤ 10,00,000) is the value stored at the ith node.
The next N-1 lines of each test case will contain two integers u and v, meaning that there is an edge connecting u and v.
The next Q lines contains the queries each of the form u and l.

Output

For each query in every test case, print the answer to the query on a single line.

Constraints

  • 1T5,1N,Q1000, 1ai106 in 35% of test cases.
  • 1T10,1N,Q105, 1ai106 in 65% of test cases.
Time Limit: 2
Memory Limit: 256
Source Limit:
Explanation

The tree in the test case looks like this.
enter image description here
The depths of nodes are:

  • Nodes at depth 1: 1
  • Nodes at depth 2: 2, 4
  • Nodes at depth 3: 3, 5 and 6

For the 2nd query , there are 3 nodes (3, 5, 6) at level 3 which are also in subtree of 1. So the answer would be 3+5+6 = 14.
For the 3rd query, there is only 1 node (1) which is at level 1, but it is not in the subtree of 2. So the answer would be 0.

Editor Image

?