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

hdu 1875 畅通工程再续

时间:2014-07-19 23:24:14      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   for   re   c   

链接:hdu 1875

输入n个岛的坐标,已知修桥100元/米,若能n个岛连通,输出最小费用,否则输出"oh!"

限制条件:2个小岛之间的距离不能小于10米,也不能大于1000米

分析:因为岛的坐标已知,所以两两之间的距离可以算出,再判断一下距离是否符合条件

#include<cstdio>
#include<cmath>
#include<algorithm>
using namespace std;
#define d 0.0001
int f[120],n,m;
struct stu
{
    int a,b;
    double c;
}t[5100];
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];
}
double krus()
{
    int i,k=0,x,y;
    double s;
    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,x[120],y[120];
    double a,b,c,s;
    scanf("%d",&N);
    while(N--){
        scanf("%d",&n);
        for(i=1;i<=n;i++)
            scanf("%d%d",&x[i],&y[i]);
        for(i=1;i<=n;i++)
            f[i]=i;
        k=1;
        for(i=1;i<=n;i++)
            for(j=1;j<i;j++){               //若岛i与j连通,那j与i必然连通,存一次就行,因此循环到j<i
                a=(double)(x[i]-x[j]);      //记得将int 转换为 double
                b=(double)(y[i]-y[j]);
                c=sqrt(a*a+b*b);
                if(c>=10-d&&c<=1000+d){       //判断是否符合条件
                    t[k].a=i;
                    t[k].b=j;
                    t[k++].c=c;
                }
            }
        m=k-1;
        sort(t+1,t+m+1,cmp);
        s=krus();
        if(s==-1)
            printf("oh!\n");
        else
            printf("%.1lf\n",s*100);      //保留一位小数
    }
    return 0;
}

hdu 1875 畅通工程再续,布布扣,bubuko.com

hdu 1875 畅通工程再续

标签:style   http   io   for   re   c   

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

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