#P2932. [USACO09JAN] Earthquake Damage G
[USACO09JAN] Earthquake Damage G
题目描述
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 pastures conveniently numbered which are connected by a set of non-directional cowpaths conveniently numbered . Cowpath connects pastures and . Cowpaths might connect to itself or perhaps might connect two pastures more than once. The barn is located in pasture .
A total of cows (in different pastures) sequentially contact Farmer John via moobile phone with an integer message that indicates that pasture is undamaged but that the calling cow is unable to return to the barn from pasture 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 (including ones that are uncrossable) from which it is not possible to return to the barn.
Note: Feedback on some of the test data will be provided on the first submissions.
输入格式
Line : Three space-separated integers: ,,and .
Lines : Line describes cowpath with two integers: and .
Lines : Line contains a single integer: .
输出格式
Line : A single integer that is the minimum count of pastures from which a cow can not return to the barn (including the damaged pastures themselves)
4 3 1
1 2
2 3
3 4
3
3
提示
Pasture is damaged, resulting in cows in pastures not being able to return to the barn.