poj 1251 Jungle Roads MST

   水

/*
author:jxy
lang:C/C++
university:China,Xidian University
**If you need to reprint,please indicate the source**
*/
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#define INF 1E9
using namespace std;
int fa[30];
int far(int nn)
{
    if(fa[nn]<0)return nn;
    return fa[nn]=far(fa[nn]);
}
struct edge
{
    int v,a,b;
};
edge e[80];
bool cmp(edge a,edge b)
{
    return a.v<b.v;
}
int main()
{
    int n,i,j,m,v,a,b;
    char t;
    while(~scanf("%d",&n)&&n)
    {
        int K=0;
        memset(fa,-1,sizeof(fa));
        for(i=0;i<n-1;i++)
        {
            scanf(" %*c%d",&m);
            for(j=0;j<m;j++)
            {
               scanf(" %c%d",&t,&v);
               e[K++]=edge{v,i,t-'A'};
            }
        }
        sort(e,e+K,cmp);
        int ans=0;
        for(i=1,j=0;i<n;j++)
        {
            a=far(e[j].a);
            b=far(e[j].b);
            if(a==b)continue;
            fa[b]=a;ans+=e[j].v;
            i++;
        }
        printf("%d\n",ans);
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值