F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

Color a Tree

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)
Total Submission(s): 1741    Accepted Submission(s): 451


Problem Description
Bob intends to color the nodes of a tree with a pen. The tree consists of $N$ nodes. These nodes are numbered $1, 2, ..., N$. The root of the tree is node $1$. The initial color of each node is white. Bob can use one unit energy to color one node into black. To prevent Bob being lazy with painting, Alice proposed $A + B$ rules. Each rule is represent by two numbers $x_i$ and $y_i$.
For the first $A$ rules, it means that there should be no less than $y_i$ nodes painted black for the subtree of node $x_i$.
For the other $B$ rules, it means that there should be no less than $y_i$ nodes painted black for all nodes except the subtree of node $x_i$.
You need to help Bob to calculate the minimum energy he needs for the painting with all rules proposed by Alice satisfied.
 

Input
The first line is the number of test cases. For each test case, the first line contains one positive number $N(1 \leq N \leq 100000)$, indicating the number of trees nodes.

The following $N - 1$ lines describe the edges. Each line contains two integers $u, v$($1 \leq u, v \leq N$), denoting there is a edge between node $u$ and node $v$.

The following one line contains one number $A$($A \leq 100000$), indicating the first $A$ rules.

The following $A$ lines describe the first $A$ rules. Each line contains two numbers $x_i$ and $y_i$ as described above.

The following one line contains one number $B$($B \leq 100000$), indicating the other $B$ rules.

The following $B$ lines describe the other $B$ rules. Each line contains two numbers $x_i$ and $y_i$ as described above.
 

Output
For each test case, output a integer donating the minimum energy Bob needs to use with all rules propose by Alice satisfied. If there is no solution, output $-1$ instead.
 

Sample Input
2 5 1 2 2 3 3 4 1 5 2 2 1 5 1 1 2 1 5 1 2 2 3 3 4 1 5 3 1 2 2 2 5 1 1 3 5
 

Sample Output
2 -1
 

Source
 

Statistic | Submit | Discuss | Note
Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-05-19 03:17:51, Gzip enabled