#Lutece0730. GPS I Love You

GPS I Love You

Migrated from Lutece 730 GPS I Love You

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

Thomas T. Garmin got a GPS for his birthday last year, and he loved it! Unfortunately, sometimes Tom wanted to take a scenic route rather than the shortest one as suggested by the GPS. He did a little reading in the manual and found that he could override the default path-finding algorithm by specifying roads which the GPS system would be forced to use when determining a route. After some experimentation, Tom discovered that often, forcing a single road succeed to get the desired route.However, for some windier routes, Tom needed to force more roads. Eventually Tom began to worry that he wasted too much time picking roads to force before each trip. Now, instead of enjoying the wonders of his GPS, he spends his drives agonizing over the following question: could he have gotten his GPS to pick the scenic route using fewer forced roads? Can you save this love affair, or are Tom and his GPS doomed to walk separate paths?

Input

Input for each test case will consist of a number of lines. The first line will contain a single integer n<100n < 100 indicating the number of endpoints for the roads, numbered 00 to nn. There will then follow nn lines each containing nn non-negative integers. If the jthj_{th} value in row ii is positive, it indicates the length of a road from endpoint ii to endpoint jj; if the value is 00, it indicates that there is no road between those two endpoints. Following these lines will be a line of the form mm p1p_1 p2p_2 p3p_3 \cdots pmp_m specifying the scenic route that Tom wants { the route contains mm roads and goes between endpoints p1p_1 and pmp_m,visiting endpoints p2p_2, p3p_3, etc., in that order. The last test case will be followed by a line containing 00.

Note that when Tom specifies his forced roads to his GPS, he specifies both their direction and order.

All the routes are simple paths and all roads lengths are 100\le 100.

Output

For each test case one line of output as follows: Case n: k where kk is the smallest number of roads Tom must force such that the GPS will choose the specified route. You should assume that if there are multiple shortest paths, the GPS always selects the most scenic of these. Therefore, if Tom's route is among the shortest to use a given set of forced roads, it will be picked by the GPS.

Samples

4
0 4 0 2
4 0 2 0
0 2 0 2
2 0 2 0
4 0 3 2 1
0
Case 1: 1

Resources

2011 East Central Regional Contest