zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    jeecg中移动tbody中的tr可实现位置交换
    SQL Server中的Datediff移植到Oracle计算有误解决方案
    Oracle如何插入日期数据
    在 Oracle 9i 中创建 方案
    手把手教你uniapp 打包的H5怎么实现谷歌登录
    网站和项目的区别
    基础知识
    全球唯一标识GUID
    MVC3 Razor视图引擎基础语法
    缓存技术
  • 原文地址:https://www.cnblogs.com/mr-stn/p/9238833.html
Copyright © 2011-2022 走看看