码迷,mamicode.com
首页 > 其他好文 > 详细

洛谷P1547 Out of Hay 最小生成树 并查集

时间:2017-06-24 00:24:07      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:span   fat   space   ons   ace   can   logs   ++   style   


洛谷P1547 Out of Hay
最小生成树
并查集 路径压缩

 

#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <cstring>
#include <string>
#include <algorithm>
#include <iostream>
#include <iomanip>
using namespace std ; 

const int maxn = 2011,maxm = 10011 ; 
struct node{
    int from,to,val ; 
};
node e[maxm] ; 
int n,tot,u,v,m,ans,x,y ;
int fa[maxn] ;  

inline bool cmp(node a,node b) 
{
    return a.val < b.val ; 
}

inline int getfather(int x) 
{
    if(fa[ x ]==x ) return x ; 
    fa[ x ] = getfather( fa[ x ] ) ; 
    return fa[ x ] ; 
}

int main() 
{
    scanf("%d%d",&n,&m) ; 
    for(int i=1;i<=m;i++)  
        scanf("%d%d%d",&e[ i ].from,&e[ i ].to,&e[ i ].val) ; 
    sort(e+1,e+m+1,cmp) ; 
    for(int i=1;i<=n;i++) fa[ i ] = i ; 
    for(int i=1;i<=m;i++) {
        x = e[ i ].from ;   y = e[ i ].to ;
        u = getfather(x) ;  v = getfather(y) ;  
        if(u != v ) 
        {
            fa[ u ] = v ; 
            tot++ ; 
            ans = e[ i ].val ; 
            if(tot==n-1) break ; 
        }
    }
    printf("%d\n",ans) ; 
    return 0 ; 
}

 

洛谷P1547 Out of Hay 最小生成树 并查集

标签:span   fat   space   ons   ace   can   logs   ++   style   

原文地址:http://www.cnblogs.com/third2333/p/7071986.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!