You are given a tree of N nodes rooted at node 1 and each node has a value where value of i′th node is Ai.
You're given Q queries, in each query two integers x,k given. Find if possible such that all nodes in the subtree of node x (including x) has values greater than or equal to k by performing swapping of two nodes any number of times. You can swap two nodes u and v such that u belongs to subtree of x (including x) and v does not. If possible then find minimum number of swapping of nodes required otherwise print −1.
Note: Since the queries are independent, the initial tree is retained after each query.
Input format
Output format
For query print the answer in a new line.
Constraints
1≤T≤10
2≤N≤2∗105
1≤Ai,k≤106
1≤u,v≤N
1≤Q≤105
2≤x≤N