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

hdu 3371 Connect the Cities

时间:2014-07-19 23:22:35      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   for   re   c   

链接:hdu 3371

已知已连通的路的序号,以及未连通的路的费用,求将所有城市连通的最小费用

也是将已连通的路的费用记为0,就转化成了基本最小生成树的题

不过这题数组要开的大点,不然很容易就RE了、、、

#include<cstdio>
#include<algorithm>
using namespace std;
int f[510],n,m;
struct stu
{
    int a,b,c;
}t[100000];
int cmp(struct stu x,struct stu y)
{
    return x.c<y.c;
}
int find(int x)
{
    if(x!=f[x])
        f[x]=find(f[x]);
    return f[x];
}
int krus()
{
    int i,k=0,s=0,x,y;
    for(i=1;i<m;i++){
        x=find(t[i].a);
        y=find(t[i].b);
        if(x!=y){
            s+=t[i].c;
            k++;
            if(k==n-1)
                break;
            f[x]=y;
        }
    }
    if(k!=n-1)
        s=-1;
    return s;
}
int main()
{
    int N,i,j,k,s,x,y[510];
    scanf("%d",&N);
    while(N--){
        scanf("%d%d%d",&n,&m,&k);
        for(i=1;i<=n;i++)
            f[i]=i;
        for(i=1;i<=m;i++)
            scanf("%d%d%d",&t[i].a,&t[i].b,&t[i].c);
        m++;
        while(k--){
            scanf("%d",&x);
            for(i=1;i<=x;i++)
                scanf("%d",&y[i]);
            for(i=1;i<=x;i++)
                for(j=1;j<i;j++){
                    t[m].a=y[i];
                    t[m].b=y[j];
                    t[m++].c=0;
                }
        }
        sort(t+1,t+m,cmp);
        s=krus();
        printf("%d\n",s);
    }
    return 0;
}


hdu 3371 Connect the Cities,布布扣,bubuko.com

hdu 3371 Connect the Cities

标签:style   http   io   for   re   c   

原文地址:http://blog.csdn.net/acm_code/article/details/37969183

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