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 }
  • 相关阅读:
    [ZOJ 4062][2018ICPC青岛站][Plants vs. Zombies]
    [Wannafly挑战赛28][B msc和mcc][预处理+枚举]
    [codeforces Mail.Ru Cup 2018 Round 1 D][ xor 操作]
    [codeforces round#475 div2 ][C Alternating Sum ]
    [zoj4045][思维+dfs]
    [zoj4046][树状数组求逆序(强化版)]
    费马大定理以及求解a^2+b^2=c^2的奇偶数列法则
    【HDOJ3567】【预处理bfs+映射+康拓展开hash】
    POJ1279 Art Gallery 多边形的核
    第八周 Leetcode 44. Wildcard Matching 水题 (HARD)
  • 原文地址:https://www.cnblogs.com/SilverNebula/p/6017388.html
Copyright © 2011-2022 走看看