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 }
  • 相关阅读:
    egret 示例实战六:利用Timer定时器,实现钟表秒针行走效果
    egret 示例实战六:延迟操作,实现打字效果
    egret:什么是脏矩形
    egret 示例实战五:随机画圆
    egret 示例实战四:圆弧遮罩
    egret 示例实战三:点击不同对象提升至最上层
    egret 示例实战二:实现爱心缩放和旋转动画
    egret 示例实战一:轻触屏幕调整显示对象位置
    egret:tabBar怎么取消默认选中呢?
    egret:ViewStack 中的scroller滚动条的隐藏
  • 原文地址:https://www.cnblogs.com/mr-stn/p/9238833.html
Copyright © 2011-2022 走看看