eolymp
bolt
Try our new interface for solving problems
Problems

Parades

Parades

Time limit 1 second
Memory limit 128 MiB

In The City of Eternal Festivities, there are n street junctions and n - 1 bidirectional streets,each street connecting two of the junctions. Between every two junctions, there is exactly one (direct or indirect) path connecting them. No junction is an endpoint for more than 10 streets.

Every 13th of September (the 256th day of the year), there are many festivities going on in The City. In particular, the citizens want to organize m parades. The parade number i starts at junction u[i] and ends at v[i], following the unique path between the endpoints.

As the mayor of The City, you are responsible for citizens' safety. Therefore you decreed that no two parades are ever allowed to use the same street, though they can have common junctions, or even common endpoints.

To appease your citizens, try to organize as many parades as possible, without breaking the safety regulations.

Input data

The first line contains the number of test cases t. The descriptions of the test cases follow:

The first line of each test case contains a single integer: the number of junctions n (2n1000). Each of the next n - 1 lines contains two integers a, b (1abn), denoting that junctions a and b are connected by a street. Each junction has at most 10 streets leaving it.

The next line contains a single integer: the number of planned parades m (0mn * (n - 1) / 2)︀. Each of the next m lines contains two integers u[i], v[i] (1u[i]v[i]n), meaning that a parade is planned to start at junction u[i], and finish at junction v[i]. No two parades share both endpoints.

Output data

For each test case, output one line containing the largest number of parades that can be organized with no street used by more than one parade.

prb7117.gif

Examples

Input example #1
1
6
1 2
2 3
3 4
3 5
3 6
4
1 3
4 5
5 6
6 4
Output example #1
2
Source 2014 ACM Central Europe (CERC), Problem A