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

The Battle of Guandu

Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 65535/65535 K (Java/Others)
Total Submission(s): 790    Accepted Submission(s): 307


Problem Description
In the year of 200, two generals whose names are Cao Cao and Shao Yuan are fighting in Guandu. The battle of Guandu was a great battle and the two armies were fighting at $M$ different battlefields whose numbers were 1 to $M$. There were also $N$ villages nearby numbered from 1 to $N$. Cao Cao could train some warriors from those villages to strengthen his military. For village $i$, Cao Cao could only call for some number of warriors join the battlefield $x_{i}$. However, Shao Yuan's power was extremely strong at that time. So in order to protect themselves, village $i$ would also send equal number of warriors to battlefield $y_{i}$ and join the Yuan Shao's Army. If Cao Cao had called for one warrior from village $i$, he would have to pay $c_{i}$ units of money for the village. There was no need for Cao Cao to pay for the warriors who would join Shao Yuan's army. At the beginning, there were no warriors of both sides in every battlefield.

As one of greatest strategist at that time, Cao Cao was considering how to beat Shao Yuan. As we can image, the battlefields would have different level of importance $w_{i}$. Some of the battlefields with $w_{i}=2$ were very important, so Cao Cao had to guarantee that in these battlefields, the number of his warriors was greater than Shao Yuan's. And some of the battlefields with $w_{i}=1$ were not as important as before, so Cao Cao had to make sure that the number of his warriors was greater or equal to Shao Yuan's. The other battlefields with $w_{i}=0$ had no importance, so there were no restriction about the number of warriors in those battlefields. Now, given such conditions, could you help Cao Cao find the least number of money he had to pay to win the battlefield?
 

Input
The first line of the input gives the number of test cases, $T(1¡ÜT¡Ü30)$. $T$ test cases follow.

Each test case begins with two integers $N$ and $M(1¡ÜN,M¡Ü10^{5})$ in one line.

The second line contains $N$ integers separated by blanks. The $i_{th}$ integer $x_{i}(1¡Üx_{i}¡ÜM)$ means Cao Cao could call for warriors from village $i$ to battlefield $x_{i}$.

The third line also contains $N$ integers separated by blanks. The $i_{th}$ integer $y_{i}(1¡Üy_{i}¡ÜM)$ means if Cao Cao called some number of warriors from village $i$, there would be the same number of warriors join Shao Yuan's army and fight in battlefield $y_{i}$.

The next line contains $N$ integers separated by blanks. The $i_{th}$ integer $c_{i}(0¡Üc_{i}¡Ü10^{5})$ means the number of money Cao Cao had to pay for each warrior from this village.

The last line contains $M$ integers separated by blanks. The $i_{th}$ number $w_{i}(w_{i}¡Ê{0,1,2})$ means the importance level of $i_{th}$ battlefield.
 

Output
For each test case, output one line containing Case #x: y, where $x$ is the test case number (starting from 1) and $y$ is the least amount of money that Cao Cao had to pay for all the warriors to win the battle. If he couldn't win, $y=-1$.
 

Sample Input
2 2 3 2 3 1 1 1 1 0 1 2 1 1 1 1 1 2
 

Sample Output
Case #1: 1 Case #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-03 14:46:13, Gzip enabled