码迷,mamicode.com
首页 > 编程语言 > 详细

最小生成树(Kruskal算法)模板

时间:2018-02-12 16:45:15      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:name   ons   main   sort   mes   pos   col   opera   tor   

#include<iostream>
#include<algorithm>

using namespace std;

int f[20000],n;

struct node
{
    int u,v,val;
    bool operator < (node&a) const
    {
        return val<a.val;
    }
}e[20000];

int findx(int x)
{
    if(x==f[x])return x;
    return f[x]=findx(f[x]);
}
int main()
{
    int k,ans,x,y;
    while(cin>>n)
    {
        ans=0;
        k=(n*(n-1))/2;
        for(int i=1;i<=n;i++)
            f[i]=i;
        for(int i=0;i<k;i++)
            cin>>e[i].u>>e[i].v>>e[i].val;
        sort(e,e+k);
        for(int i=0;i<k;i++)
        {
            x=findx(e[i].u);
            y=findx(e[i].v);
            if(x!=y)
            {
                ans+=e[i].val;
                f[x]=y;
                n--;
                if(!n)break;
            }
        }
        cout<<ans<<endl;
    }
    return 0;
}

 

最小生成树(Kruskal算法)模板

标签:name   ons   main   sort   mes   pos   col   opera   tor   

原文地址:https://www.cnblogs.com/HadesBlog/p/8444577.html

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