• PAT 1013 Battle Over Cities (25)


    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
    ", cnt==1 ? 0 : cnt-1);
    33   }
    34   return 0;
    35 }
  • 相关阅读:
    js object 常用方法总结
    深入研究js中的位运算及用法
    input事件中文触发多次问题研究
    景点地图开发实战
    炫酷线条动画--svg
    转:绝对干货--WordPress自定义查询wp_query所有参数详细注释
    canvas实例 ---- 制作简易迷宫(一)
    炫酷弹窗效果制作
    js排序算法总结—冒泡,快速,选择,插入,希尔,归并
    js 实现 promise
  • 原文地址:https://www.cnblogs.com/mr-stn/p/9238833.html
Copyright © 2020-2023  润新知