#Lutece0828. The LCIS on the Tree

The LCIS on the Tree

Migrated from Lutece 828 The LCIS on the Tree

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

For a sequence S1,S2,,SNS_1,S_2,\cdots ,S_N, and a pair of integers (ii, jj), if 1ijN1 \leq i \leq j \leq N and Si<Si+1<Si+2<<Sj1<SjS_i < S_{i+1} < S_{i+2} <\cdots < S_{j-1} < S_j, then the sequence Si,Si+1,,SjS_i,S_{i+1},\cdots ,S_j is a CIS (Continuous Increasing Subsequence). The longest CIS of a sequence is called the LCIS (Longest Continuous Increasing Subsequence).

Now we consider a tree rooted at node 11. Nodes have values. We have QQ queries, each with two nodes uu and vv. You have to find the shortest path from uu to vv. And write down each nodes' value on the path, from uu to vv, inclusive. Then you will get a sequence, and please show us the length of its LCIS.

Input

The first line has a number TT (T10T\leq 10) , indicating the number of test cases.

For each test case, the first line is a number NN (N105N \leq 10^5), the number of nodes in the tree.

The second line comes with NN numbers v1,v2,v3,vNv_1,v_2,v_3\cdots ,v_N, describing the value of node 11 to node NN. (1vi1091 \leq v_i \leq 10^9)

The third line comes with N1N-1 numbers p2,p3,p4,pNp_2,p_3,p_4\cdots ,p_N, describing the father nodes of node 22 to node NN. Node 11 is the root and will have no father.

Then comes a number QQ, it is the number of queries. (Q105Q \leq 10^5)

For next QQ lines, each with two numbers uu and vv. As described above.

Output

For test case XX, output Case #X: at the first line.

Then output QQ lines, each with an answer to the query.

There should be a blank line BETWEEN each test case.

Samples

1
5
1 2 3 4 5
1 1 3 3
3
1 5
4 5
2 5
Case #1:
3
2
3

Resources

2013 ACM-ICPC China Chengdu Provincial Programming Contest