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

克鲁斯卡尔(模板题)

时间:2014-06-26 12:17:50      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   strong   string   os   

http://acm.hdu.edu.cn/showproblem.php?pid=1372

以前真二,模板题

OJ真奇怪,有时能A有时W,

#include <iostream>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
using namespace std;
struct node
{
    int x,y,z;
}q[100*101/2+1];
int m,n;
int sum=0;
int bin[101];
int cmp(const void *a,const void *b)
{
    return (*(struct node *)a).z-(*(struct node *)b).z;
}
int findx(int x)
{
    int r=x;
    while(bin[r]!=r)
    {
        r=bin[r];
    }
    int j=x;
    int k;
    while(j!=r)
    {
        k=bin[j];
        bin[j]=r;
        j=k;
    }
    return r;
}
void merge(int x,int y)
{
    //int fx=findx(x);
    //int fy=findx(y);//在OJ等不同平台上这样有时W,因为findx()有返回值。
    if(x!=y)
    {
        bin[x]=y;//节约时间
    }
}
void K()
{
    int l=1;
    for(int i=0;i<m;i++)
    {
        if(l>=n) break;
        if(findx(q[i].x)!=findx(q[i].y))
        {
            merge(q[i].x,q[i].y);
            l++;
            sum=sum+q[i].z;
        }
    }
    if(l==n) printf("%d\n",sum);
    else printf("?\n");
}
int main()
{
    while(scanf("%d%d",&m,&n)&&m!=0)
    {
        sum=0;
        for(int i=1;i<=n;i++)
            bin[i]=i;
        for(int i=0;i<m;i++)
        {
            scanf("%d%d%d",&q[i].x,&q[i].y,&q[i].z);
        }
        qsort(q,m,sizeof(q[0]),cmp);
        K();
    }

    return 0;
}

克鲁斯卡尔(模板题),布布扣,bubuko.com

克鲁斯卡尔(模板题)

标签:style   http   color   strong   string   os   

原文地址:http://www.cnblogs.com/zhangmingcheng/p/3809376.html

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