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 题目大意:给出n个城市之间有相互连接的m条道路,当删除一个城市和其连接的道路的时候, 问其他几个剩余的城市至少要添加多少个路线才能让它们重新变为连通图,其实就是求连通分支数
1 #include2 #include 3 #include 4 5 int graph[1001][1001]; 6 int visited[1001]; 7 int n,m,k; 8 void dfs( int a) 9 {10 int i;11 visited[a]=1;12 for( i=1; i<=n; i++)13 {14 if( visited[i]==0 && graph[a][i]==1)15 dfs(i);16 }17 }18 int main()19 {20 int cnt=0,temp;21 int i,j;22 int a,b;23 scanf("%d%d%d",&n,&m,&k);24 for( i=0; i