zoukankan      html  css  js  c++  java
  • POJ2395 Out of Hay

     
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 15608   Accepted: 6108

    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

    * Line 1: Two space-separated integers, N and M. 

    * Lines 2..1+M: Line i+1 contains three space-separated integers, A_i, B_i, and L_i, describing a road from A_i to B_i of length L_i.

    Output

    * Line 1: A single integer that is the length of the longest road required to be traversed.

    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.

    Source

     
    依旧是求最小生成树中的最长边
     
     1 /*by SilverN*/
     2 #include<algorithm>
     3 #include<iostream>
     4 #include<cstring>
     5 #include<cstdio>
     6 #include<cmath>
     7 #include<vector>
     8 using namespace std;
     9 const int mxn=3210;
    10 int read(){
    11     int x=0,f=1;char ch=getchar();
    12     while(ch<'0' || ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    13     while(ch>='0' && ch<='9'){x=x*10+ch-'0';ch=getchar();}
    14     return x*f;
    15 }
    16 struct edge{
    17     int x,y;
    18     int d;
    19 }e[mxn*mxn];
    20 int cmp(const edge a,const edge b){
    21     return a.d<b.d;
    22 }
    23 int m,n;
    24 //
    25 int fa[mxn];
    26 int find(int x){
    27     if(fa[x]==x)return x;
    28     return fa[x]=find(fa[x]);
    29 }
    30 void kruskal(){
    31     for(int i=1;i<=n;++i)fa[i]=i;
    32     int num=1;
    33     int ans=0;
    34     for(int i=1;i<=m;++i){
    35         int f1=find(e[i].x);
    36         int f2=find(e[i].y);
    37         if(f1!=f2){
    38             fa[f1]=f2;
    39             ans=max(ans,e[i].d);
    40             num++;
    41         }
    42         if(num==n)break;
    43     }
    44     printf("%d
    ",ans);
    45     return;
    46 }
    47 int T;
    48 int main(){
    49     int i,j;
    50     n=read();m=read();
    51     for(i=1;i<=m;++i){
    52         e[i].x=read();e[i].y=read();
    53         e[i].d=read();
    54     }
    55     sort(e+1,e+m+1,cmp);
    56     kruskal();
    57     return 0;
    58 }
  • 相关阅读:
    Tomcat中实现IP访问限制
    webservice ssl双向认证配置
    如何更专业的使用Chrome开发者工具
    C++中常量成员函数的含义
    写时拷贝COW(copy-on-write)
    char* 、const char*和string之间的转换
    C++模板特化与偏特化
    lamda表达式和尾置返回类型
    编译期多态和运行时多态
    静态绑定和动态绑定
  • 原文地址:https://www.cnblogs.com/SilverNebula/p/6017388.html
Copyright © 2011-2022 走看看