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

POJ 2485 Highways

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

标签:style   strong   io   for   re   c   

题意:给你一个数n,代表有n个村庄,然后要你输入n行n列个数,第i行的第j个元素代表i村与j村的距离,要你求出连通n个村庄所需修的最短路所需要的最大边

思路:用Kruskal算法求

AC代码:

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
#define N 125000    //最多的边数为n*(n-1)/2
int u[N],v[N],w[N],r[N];
int f[520],str[520][520];
int find(int x)
{
    if(x!=f[x])
        f[x]=find(f[x]);
    return f[x];
}
int cmp(const int x,const int y)    //间接排序距离
{
    return w[x]<w[y];
}
int main()
{
    int x,y,sum,e,i,j,n,t,maxx;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d",&n);
        int cnt=0;
        memset(str,0,sizeof(str));
        for(i=1;i<=n;i++)
            for(j=1;j<=n;j++)
            {
                int val;
                scanf("%d",&val);
                if(val==0)
                    continue;
                if(!(str[i][j]&&str[j][i]))
                {
                    u[cnt]=i;
                    v[cnt]=j;
                    w[cnt++]=val;
                    str[i][j]=str[j][i]=1;
                }

            }
        for(i=0;i<=n;i++)f[i]=i;
        for(i=0;i<=cnt;i++)r[i]=i;
        sort(r,r+cnt,cmp);
        sum=0;
        maxx=0;
        for(i=0;i<=cnt;i++)
        {
            e=r[i];
            x=find(u[e]);
            y=find(v[e]);
            if(x!=y){
                maxx=max(maxx,w[e]);
                f[x]=y;
            }

        }
        printf("%d\n",maxx);
    }
}


POJ 2485 Highways,布布扣,bubuko.com

POJ 2485 Highways

标签:style   strong   io   for   re   c   

原文地址:http://blog.csdn.net/u012313382/article/details/38045999

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