online_judge_1017

183 篇文章 0 订阅
#include <iostream>
#include <algorithm>

using namespace std;

struct Point
{
    int a;
    int next;
    int dist;
    bool operator < (const Point &A) const
    {
        return dist<A.dist;
    }
}p[5000];

int Tree[101];
int findRoot(int x)
{
    int t,ret;
    if(Tree[x] == -1)
        return x;
    t = x;
    while(Tree[x] != -1)
    {
        x = Tree[x];
    }
    ret = x;
    Tree[t] = ret;
    return ret;
}

int main()
{
    int n,m;
    int i;
    int cost;
    int pstart,pend;
    while(cin>>n)
    {
        if(n == 0)
            break;
        m = n*(n-1)/2;
        cost = 0;
        for(i=1; i<=n; ++i)
            Tree[i] = -1;
        for(i=0; i<m; ++i)
            cin>>p[i].a>>p[i].next>>p[i].dist;
        sort(p,p+m);
        for(i=0; i<m; ++i)
        {
            pstart = findRoot(p[i].a);
            pend = findRoot(p[i].next);
            if(pstart!=pend)
            {
                Tree[pend] = pstart;
                cost += p[i].dist;
            }
        }
        cout<<cost<<endl;
    }
    return 0;
}


头一次使用并查集,真的很好用。浙大的机试指南真的很赞!!!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值