博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1013. Battle Over Cities (25)
阅读量:5355 次
发布时间:2019-06-15

本文共 2270 字,大约阅读时间需要 7 分钟。

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.

Sample Input
3 2 31 21 31 2 3
Sample Output
100
来源: <>
 
 
  1. #pragma warning(disable:4996)
  2. #include <iostream>
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <algorithm>
  6. using namespace std;
  7. int n, m, k;
  8. bool connect[1010][1010], f[1010], connectTemp[1010][1010], fTemp[1010];
  9. void dfs(int a) {
  10. int b=0;
  11. for (int b = 1; b <= n; b++) {
  12. if (connectTemp[a][b] && fTemp[b] == false) {
  13. fTemp[b] = true;
  14. dfs(b);
  15. }
  16. }
  17. }
  18. int main(void) {
  19. memset(connect, 0, sizeof(connect));
  20. memset(f, 0, sizeof(f));
  21. cin >> n >> m >> k;
  22. for (int i = 0; i < m; i++) {
  23. int p, q;
  24. scanf("%d %d", &p, &q);
  25. connect[p][q] = connect[q][p] = true;
  26. }
  27. for (int i = 0; i < k; i++) {
  28. int z;
  29. scanf("%d", &z);
  30. memset(fTemp, 0, sizeof(fTemp));
  31. for (int g = 0; g <= n; g++)
  32. for (int h = 0; h <= n; h++)
  33. connectTemp[g][h] = connect[g][h];
  34. for (int g = 0; g <= n; g++) {
  35. connectTemp[g][z] = false;
  36. connectTemp[z][g] = false;
  37. }
  38. int count = 0;
  39. for (int p = 1; p <= n; p++) {
  40. if (fTemp[p] == false)
  41. count++;
  42. dfs(p);
  43. }
  44. cout << count - 2 << endl;
  45. }
  46. return 0;
  47. }

转载于:https://www.cnblogs.com/zzandliz/p/5023050.html

你可能感兴趣的文章
Python之旅Day14 JQuery部分
查看>>
core--线程池
查看>>
redux-effect
查看>>
他山之石:加载图片的一个小问题
查看>>
shell - 常识
查看>>
linux下编译复数类型引发的错误:expected unqualified-id before '(' token
查看>>
codeforces 1041A Heist
查看>>
Spring Cloud Stream消费失败后的处理策略(三):使用DLQ队列(RabbitMQ)
查看>>
bzoj1048 [HAOI2007]分割矩阵
查看>>
PKUWC2018 5/6
查看>>
As-If-Serial 理解
查看>>
洛谷P1005 矩阵取数游戏
查看>>
在Silverlight中使用HierarchicalDataTemplate为TreeView实现递归树状结构
查看>>
无线通信基础(一):无线网络演进
查看>>
关于python中带下划线的变量和函数 的意义
查看>>
linux清空日志文件内容 (转)
查看>>
Servlet接收JSP参数乱码问题解决办法
查看>>
Ajax : load()
查看>>
MySQL-EXPLAIN执行计划Extra解释
查看>>
Zookeeper概述
查看>>