[关闭]
@Chilling 2017-02-16T09:55:38.000000Z 字数 1875 阅读 863

HDU-1102: Constructing Roads

最小生成树


Description

There are N villages, which are numbered from 1 to N, and you should build some roads such that every two villages can connect to each other. We say two village A and B are connected, if and only if there is a road between A and B, or there exists a village C such that there is a road between A and C, and C and B are connected.

We know that there are already some roads between some villages and your job is the build some roads such that all the villages are connect and the length of all the roads built is minimum.

Input

The first line is an integer N (3 <= N <= 100), which is the number of villages. Then come N lines, the i-th of which contains N integers, and the j-th of these N integers is the distance (the distance should be an integer within [1, 1000]) between village i and village j.

Then there is an integer Q (0 <= Q <= N * (N + 1) / 2). Then come Q lines, each line contains two integers a and b (1 <= a < b <= N), which means the road between village a and village b has been built.

Output
You should output a line contains an integer, which is the length of all the roads to be built such that all the villages are connected, and this value is minimum.

Sample Input

3
0 990 692
990 0 179
692 179 0
1
1 2

Sample Output

179

题意:输入一个数字n,再输入n行n列数字,i行j列代表第i个村庄到第j个村子的距离。再输入一个整数q,下面有q行,每行两个数字a和b,表示村庄a和b之间的路已经修好了,问连通所有的村子的还需要的最小长度。

分析:最小生成树模板题。首先输入m[i][j]的值,然后q组已经修好的路,令m[a][b]为0即可。


  1. #include<stdio.h>
  2. #include<algorithm>
  3. using namespace std;
  4. int m[111][111],father[11111],k,sum;
  5. struct node
  6. {
  7. int st,en,len;
  8. }a[11111];
  9. int cmp(node a,node b)
  10. {
  11. return a.len<b.len;
  12. }
  13. int findx(int x)
  14. {
  15. if(x!=father[x])
  16. father[x]=findx(father[x]);
  17. return father[x];
  18. }
  19. void kruskal()
  20. {
  21. int i,x,y;
  22. sum=0;
  23. for(i=0;i<k;i++)
  24. father[i]=i;
  25. for(i=0;i<k;i++)
  26. {
  27. x=findx(a[i].st);
  28. y=findx(a[i].en);
  29. if(x!=y)
  30. {
  31. sum+=a[i].len;
  32. father[x]=y;
  33. }
  34. }
  35. printf("%d\n",sum);
  36. }
  37. int main()
  38. {
  39. int n,i,j,x,y,q;
  40. while(scanf("%d",&n)!=EOF)
  41. {
  42. k=0;
  43. for(i=1;i<=n;i++)
  44. for(j=1;j<=n;j++)
  45. scanf("%d",&m[i][j]);
  46. scanf("%d",&q);
  47. while(q--)
  48. {
  49. scanf("%d%d",&x,&y);
  50. m[x][y]=0;
  51. m[x][y]=0;
  52. }
  53. for(i=1;i<=n;i++)
  54. for(j=1;j<=n;j++)
  55. {
  56. a[k].st=i;
  57. a[k].en=j;
  58. a[k].len=m[i][j];
  59. k++;
  60. }
  61. sort(a,a+k,cmp);
  62. kruskal();
  63. }
  64. return 0;
  65. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注