Clarke and room

Accepts: 0
Submissions: 0
Time Limit: 4000/2000 MS (Java/Others)
Memory Limit: 131072/131072 K (Java/Others)
Problem Description

Clarke is a patient with multiple personality disorder. One day, Clarke split into nn guys, the iith Clarke named nameiname_i. They live in nn rooms connected by n1n-1 roads. There is only one path between any two rooms. Now, their landlord is to check the name with a long list. The landlord will check mm times, at iith time, he wants to know the maximum length of the names which appear on the list sis_i on the path between xix_i and yiy_i rooms(including xix_i and yiy_i).

Input

The first line contains an integer T(1T10)T(1 \le T \le 10), the number of test cases.
For each test case:
The first line contains an integer n(1n100000)n(1 \le n \le 100000). Then nn lines follow, the iith line contains a string nameiname_i. Then n1n-1 lines follow, the iith line contains an integer fi+1(1fi+1i)f_{i+1}(1 \le f_{i+1} \le i), denoting there is an edge between i+1i+1 and fi+1f_{i+1}. Then mm lines follow, the iith line contains two integers xi,yi(1xi,yin)x_i, y_i(1 \le x_i, y_i \le n) and a string sis_i. Every string is composed by lower letter.
1namei,si,i=1nnamei,i=1msi1000001 \le |name_i|, |s_i|, \sum_{i=1}^{n} |name_i|, \sum_{i=1}^{m} |s_i| \le 100000

Output

For each test case, print mm lines with the answers.

Sample Input
1
4
a
ab
abc
d
1
2
1
3
1 1 abc
1 1 d
1 3 abc
Sample Output
1
0
3

Hint:
Ask 1: $a$ appears in $abc$, so the answer is $1$.  
Ask 2: There is no one appears in $d$, so the answer is $0$.  
Ask 3: $a$, $ab$ and $abc$ appear in $abc$, so the answer is $3$.