#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 AA and Island BB can stand at most 55 tons’ weight, and bridge connecting Island BB and CC can stand at most 44, then zplinti1 can’t delivery 55 tons of goods at once from AA to CC.

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 uu and vv, 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 n×nn\times n array, say array GG. The number GijG_{ij} is the answer between Island ii and Island jj, if two islands are not connected, the answer will be 1-1.

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 TT(T30T\leq 30), indicating the number of test cases.

For each case, there are two numbers nn and mm which is the number of islands and bridges in Lemuria(1n1,0001\leq n \leq 1,000,0m300,0000\leq m \leq 300,000). The next mm lines come, each with two integers uu and vv, meaning there is a bridge between Island uu and Island vv(0u,v<n0\leq u,v < n). Then nn lines are given, each with nn numbers, meaning the n×nn\times n array GG kennethsnow provides. You can asume that GiiG_{ii} always equals 00.

Output

For each case, output Case #i: first. (ii is the number of the test case, from 11 to TT). 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