PAT 1013 Battle Over Cities (25)

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 20:57   1746   0

It is vitally important to have all the cities connected by highways in a war. If a city is occupied by the enemy, all the highways from/toward that city are closed. We must know immediately if we need to repair any other highways to keep the rest of the cities connected. Given the map of cities which have all the remaining highways marked, you are supposed to tell the number of highways need to be repaired, quickly.

For example, if we have 3 cities and 2 highways connecting city~1~-city~2~ and city~1~-city~3~. Then if city~1~ is occupied by the enemy, we must have 1 highway repaired, that is the highway city~2~-city~3~.

Input

Each input file contains one test case. Each case starts with a line containing 3 numbers N (&lt1000), M and K, which are the total number of cities, the number of remaining highways, and the number of cities to be checked, respectively. Then M lines follow, each describes a highway by 2 integers, which are the numbers of the cities the highway connects. The cities are numbered from 1 to N. Finally there is a line containing K numbers, which represent the cities we concern.

Output

For each of the K cities, output in a line the number of highways need to be repaired if that city is lost.

Sample Input

3 2 3
1 2
1 3
1 2 3

Sample Output

1
0
0
 1 #include<iostream>
 2 #include<vector>
 3 using namespace std;
 4 const int inf = 99999999;
 5 vector<vector<int> > G(1001, vector<int>(1001, 0));
 6 vector<int> vis(1001, false);
 7 int n, m, k;
 8 void dfs(int v){
 9   vis[v] = true;
10   for(int i=1; i<=n; i++)
11     if(!vis[i] && G[v][i])  dfs(i);
12 }
13 int main(){
14   int i;
15   scanf("%d%d%d", &n, &m, &k);
16   for(i=0; i<m; i++){
17     int a, b;
18     scanf("%d%d", &a, &b);
19     G[a][b] = G[b][a] = 1;
20   }
21   for(i=0; i<k; i++){
22     int temp, cnt=0;
23     scanf("%d", &temp);
24     fill(vis.begin(), vis.end(), false);
25     vis[temp] = true;
26     for(int j=1; j<=n; j++){
27       if(!vis[j]){
28         dfs(j);
29         cnt++;
30       }
31     }
32     printf("%d\n", cnt==1 ? 0 : cnt-1);
33   }
34   return 0;
35 }

转载于:https://www.cnblogs.com/mr-stn/p/9238833.html

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP