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

poj 3522 Slim Span

时间:2015-05-30 15:20:30      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:acm   c++   poj   算法   编程   

链接:http://poj.org/problem?id=3522 这个题我就想知道我已经写那么完美了,他为啥a不掉!!!!!!!!!!!!!!!!!!!!!!

都来看看 啊~~~~~~~~~~

#include<iostream>
#include<string.h>
#include<stdio.h>
#include<algorithm>
using namespace std;
const int INF=111;
const int M=999999999;
int F[INF];
int res,cnt,n,m;

struct Edge
{
    int u,v,w;
} per[INF*INF];

bool cmp(Edge a,Edge b)
{
    return a.w<b.w;
}

int Find(int x)
{
    if(x!=F[x])
        F[x]=Find(F[x]);
    return F[x];
}


void init()
{
    for(int i=1; i<=n; i++)
    {
        F[i]=i;

    }
}

int main()
{
    while(scanf("%d%d",&n,&m)!=EOF)
    {
        if(n==0&&m==0)
            break;

        res=M;
        for(int i=0; i<m; i++)
        {
            scanf("%d%d%d",&per[i].u,&per[i].v,&per[i].w);
        }


        sort(per,per+m,cmp);
        int i,j,res=M;
        int temp;
        for(i=0; i<m; i++)
        {
            cnt=0;
            init();
            for(j=i; j<m; j++)
            {
                temp=M;
                if(Find(per[j].u!=Find(per[j].v)))
                {
                  F[per[j].u]=per[j].v;
                    cnt++;

                    if(cnt==n-1)
                    {

                        if(temp>per[j].w-per[i].w)
                            temp=per[j].w-per[i].w;
                        break;
                    }
                }

            }
            if(temp<res)
                res=temp;
        }

        if(res!=M)
            printf("%d\n",res);
        else
            printf("-1\n");
    }
    return 0;
}


 

poj 3522 Slim Span

标签:acm   c++   poj   算法   编程   

原文地址:http://blog.csdn.net/lsgqjh/article/details/46274569

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