#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 , and a pair of integers (, ), if and , then the sequence 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 . Nodes have values. We have queries, each with two nodes and . You have to find the shortest path from to . And write down each nodes' value on the path, from to , inclusive. Then you will get a sequence, and please show us the length of its LCIS
.
Input
The first line has a number () , indicating the number of test cases.
For each test case, the first line is a number (), the number of nodes in the tree.
The second line comes with numbers , describing the value of node to node . ()
The third line comes with numbers , describing the father nodes of node to node . Node is the root and will have no father.
Then comes a number , it is the number of queries. ()
For next lines, each with two numbers and . As described above.
Output
For test case , output Case #X:
at the first line.
Then output 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