http://pat.zju.edu.cn/contests/pat-practise/1013

来源:互联网 发布:js中绑定含参数函数 编辑:程序博客网 时间:2024/04/30 15:30
 

1013. Battle Over Cities (25)

时间限制
400 ms
内存限制
32000 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

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 city1-city2 and city1-city3. Then if city1 is occupied by the enemy, we must have 1 highway repaired, that is the highway city2-city3.

Input

Each input file contains one test case. Each case starts with a line containing 3 numbers N (<1000), 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 31 21 31 2 3
Sample Output
100

[cpp] view plaincopy
  1. #include<iostream>  
  2. #include<cstdio>  
  3. #include<memory.h>  
  4. #include<algorithm>  
  5. #include<cstring>  
  6. #include<queue>  
  7. #include<cmath>  
  8. #include<cstdlib>  
  9. #include<iomanip>  
  10. #include<string>  
  11. using namespace std;  
  12. int map[1001][1001];  
  13. int visit[1001];  
  14. int n;  
  15. void dfs(int x){  
  16.     visit[x] = 1;  
  17.     for(int i=1;i<=n;++i){  
  18.         if(map[x][i] && !visit[i]){  
  19.             dfs(i);  
  20.         }  
  21.     }  
  22. }  
  23. int getblock(){  
  24.     int ans = 0;  
  25.     for(int i=1;i<=n;++i){  
  26.         if(!visit[i]){  
  27.             ans++;  
  28.             dfs(i);  
  29.         }  
  30.     }  
  31.     return ans;  
  32. }  
  33.   
  34. int main(){  
  35.   
  36.     //freopen("in.txt", "r", stdin);  
  37.   
  38.     int m, k;  
  39.     int a, b;  
  40.     int tmp;  
  41.     while(cin>>n>>m>>k){  
  42.         memset(map, 0, sizeof(map));  
  43.         for(int i=0;i<m;++i){  
  44.             scanf("%d%d", &a, &b);  
  45.             map[a][b] = map[b][a] = 1;  
  46.         }  
  47.           
  48.         for(int i=0;i<k;++i){  
  49.             memset(visit, 0, sizeof(visit));  
  50.             scanf("%d", &tmp);  
  51.             visit[tmp] = 1;  
  52.             int ans = getblock();  
  53.             printf("%d\n", ans-1);  
  54.         }  
  55.     }  
  56.       
  57.     //fclose(stdin);  
  58.     return 0;  
  59. }  
  60.       
原创粉丝点击