码迷,mamicode.com
首页 > 其他好文 > 详细

1013. Battle Over Cities

时间:2015-03-11 14:57:06      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:c++   pat   

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.


#include <stdio.h>
#include <stdlib.h>
#include <algorithm>
using namespace std;

#define N 1000
int G[N][N];
bool visit[N]={false};
int n,m,k;
int index;
void DFS (int a);
int main ()
{
    int i,j;
    scanf("%d %d %d",&n,&m,&k);
    fill(G[0],G[0]+N*N,0);
    int start,end;
    for( i=0;i<m;i++)
    {
         scanf("%d %d",&start,&end);
         G[start][end]=1;
         G[end][start]=1;
         }
    int count=0;
    for( i=0;i<k;i++)
    {
         scanf("%d",&index);
         count=0;
         fill(visit,visit+N,false);
         for( j=1;j<=n;j++)
         {
              if( j!=index&&visit[j]==false) 
              {
                  DFS(j);
                  count++;
                  }
              }
         printf("%d\n",count-1);
         }
    system("pause");
    return 0;
    }

void DFS (int a)
{
     int i;
     if( a==index) return ;
     visit[a]=true;
     for( i=1;i<=n;i++)
          if( visit[i]==false && G[a][i]==1) DFS(i);
     }


1013. Battle Over Cities

标签:c++   pat   

原文地址:http://blog.csdn.net/lchinam/article/details/44196811

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!