#Lutece0685. Grocer's Shop
Grocer's Shop
Migrated from Lutece 685 Grocer's Shop
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
Zplinti1 is a Grocery shopkeeper in Lemuria. His shop provides home delivery service, that is, when someone needs, he can always deliver the goods to their houses.
The Country of Lemuria consists of n islands, some of the islands are connected by bridges. So, zplinti1 needs to pass the bridges to send the goods using his little truck.
But there is a little problem: different bridges can stand different amount of loads. For example, if the bridge connecting Island and Island can stand at most tons’ weight, and bridge connecting Island and can stand at most , then zplinti1 can’t delivery tons of goods at once from to .
Realizing the problem, zplinti1 calls kennethsnow, one of the staffs in his shop, to investigate the issue. Zplinti1 wants to know, between any two islands and , what is the maximum weight of goods he can delivery, satisfying no matter what delivery paths he chooses, there will be no danger of overload. Note that zplinti1 always chooses simple paths, that is , he will never pass a same island twice!
Kennethsnow gives zplinti1 an array, say array . The number is the answer between Island and Island , if two islands are not connected, the answer will be .
Zplinti1 do not know the actual loads each bridge can stand, still he doubt that kennethsnow is lying. He wonders whether kennethsnow’s answer can be true.
Input
The first line of input contains a number (), indicating the number of test cases.
For each case, there are two numbers and which is the number of islands and bridges in Lemuria(,). The next lines come, each with two integers and , meaning there is a bridge between Island and Island (). Then lines are given, each with numbers, meaning the array kennethsnow provides. You can asume that always equals .
Output
For each case, output Case #i:
first. ( is the number of the test case, from to ). If kennethsnow is lying , output No
, otherwise Yes
.
Samples
3
4 5
0 1
0 2
0 3
1 2
1 3
0 5 5 5
5 0 5 5
5 5 0 4
5 5 4 0
4 4
0 1
0 2
1 2
1 3
0 4 4 4
4 0 4 5
4 4 0 4
4 5 4 0
4 2
0 1
1 2
0 3 3 -1
3 0 4 -1
3 4 0 -1
-1 -1 -1 0
Case #1: No
Case #2: Yes
Case #3: Yes
Resources
11th UESTC Programming Contest Preliminary