#P7036. [USACO][2009][MAR][G] Earthquake Damage 2
[USACO][2009][MAR][G] Earthquake Damage 2
Description
Wisconsin has had an earthquake that has struck Farmer John's farm! The earthquake has damaged some of the pastures so that they are unpassable. Remarkably, none of the cowpaths was damaged.
As usual, the farm is modeled as a set of P (1 <= P <= 3,000) pastures conveniently numbered 1..P which are connected by a set of C (1 <= C <= 20,000) non-directional cowpaths conveniently numbered 1..C. Cowpath i connects pastures and (1 <= <= P; 1 <= <= P). Cowpaths might connect to itself or perhaps might connect two pastures more than once. The barn is located in pasture 1.
A total of N (1 <= N <= P) cows (in different pastures) sequentially contacts Farmer John via moobile phone with an integer message report_j (2 <= report_j <= P) that indicates that pasture report_j is undamaged but that the calling cow is unable to return to the barn from pasture report_j because she could not find a path that does not go through damaged pastures.
After all the cows report in, determine the minimum number of pastures that are damaged.
Format
Input
- Line 1: Three space-separated integers: P, C, and N
- Lines 2..C+1: Line i+1 describes cowpath i with two integers: and
- Lines C+2..C+N+1: Line C+1+j contains a single integer: report_j
Output
- Line 1: One number, the minimum number of damaged pastures.
Samples
5 5 2
1 2
2 3
3 5
2 4
4 5
4
5
1
OUTPUT DETAILS:
Only pasture 2 being damaged gives such a scenario.
相关
在下列比赛中: