[关闭]
@Chilling 2017-02-16T09:55:31.000000Z 字数 2183 阅读 775

POJ-2395: Out of Hay

最小生成树


Description

The cows have run out of hay, a horrible event that must be remedied immediately. Bessie intends to visit the other farms to survey their hay situation. There are N (2 <= N <= 2,000) farms (numbered 1..N); Bessie starts at Farm 1. She'll traverse some or all of the M (1 <= M <= 10,000) two-way roads whose length does not exceed 1,000,000,000 that connect the farms. Some farms may be multiply connected with different length roads. All farms are connected one way or another to Farm 1.

Bessie is trying to decide how large a waterskin she will need. She knows that she needs one ounce of water for each unit of length of a road. Since she can get more water at each farm, she's only concerned about the length of the longest road. Of course, she plans her route between farms such that she minimizes the amount of water she must carry.

Help Bessie know the largest amount of water she will ever have to carry: what is the length of longest road she'll have to travel between any two farms, presuming she chooses routes that minimize that number? This means, of course, that she might backtrack over a road in order to minimize the length of the longest road she'll have to traverse.

Input

Sample Input

3 3
1 2 23
2 3 1000
1 3 43

Sample Output

43

Hint

OUTPUT DETAILS: 
In order to reach farm 2, Bessie travels along a road of length 23. To reach farm 3, Bessie travels along a road of length 43. With capacity 43, she can travel along these roads provided that she refills her tank to maximum capacity before she starts down a road.

题意:输入n和m,代表有n个农场,下面有m行,有三个整数a,b,l,代表农场
a和b之间的距离为l,求从农场1出发到其他所有农场的最短路径中的最大值。【其实就是求最小生成树中的最大权值】

分析:每次的长度不用加起来,直接sum=max(sum,a[i].len)求得最大的权值。


  1. #include<stdio.h>
  2. #include<algorithm>
  3. using namespace std;
  4. int n,m,father[2222],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. 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<=n;i++)
  24. father[i]=i;
  25. for(i=0;i<m;i++)
  26. {
  27. x=findx(a[i].st);
  28. y=findx(a[i].en);
  29. if(x!=y)
  30. {
  31. sum=max(sum,a[i].len);
  32. father[x]=y;
  33. }
  34. }
  35. printf("%d\n",sum);
  36. }
  37. int main()
  38. {
  39. int i;
  40. while(scanf("%d%d",&n,&m)!=EOF)
  41. {
  42. for(i=0;i<m;i++)
  43. scanf("%d%d%d",&a[i].st,&a[i].en,&a[i].len);
  44. sort(a,a+m,cmp);
  45. kruskal();
  46. }
  47. return 0;
  48. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注