zoukankan      html  css  js  c++  java
  • HDOJ 1162

    Eddy's picture

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 5797    Accepted Submission(s): 2913

    Problem Description
    Eddy begins to like painting pictures recently ,he is sure of himself to become a painter.Every day Eddy draws pictures in his small room, and he usually puts out his newest pictures to let his friends appreciate. but the result it can be imagined, the friends are not interested in his picture.Eddy feels very puzzled,in order to change all friends 's view to his technical of painting pictures ,so Eddy creates a problem for the his friends of you. Problem descriptions as follows: Given you some coordinates pionts on a drawing paper, every point links with the ink with the straight line, causes all points finally to link in the same place. How many distants does your duty discover the shortest length which the ink draws?
     
    Input
    The first line contains 0 < n <= 100, the number of point. For each point, a line follows; each following line contains two real numbers indicating the (x,y) coordinates of the point.
    Input contains multiple test cases. Process to the end of file.
     
    Output
    Your program prints a single real number to two decimal places: the minimum total length of ink lines that can connect all the points.
     
    Sample Input
    3 1.0 1.0 2.0 2.0 2.0 4.0
     
    Sample Output
    3.41
     
    核心算法:prim水题;
    #include<stdio.h>
    #include<string.h>
    #include<math.h>
    double g[101][101];
    double ans;
    double min=0xfffff;
    void prim(int n)
    {
        double lowclose[101];
        int closet[101],used[101],i,j,k;
        memset(used,0,sizeof(used));
        for(i=1;i<=n;i++)
            lowclose[i]=g[i][1],
            closet[i]=1;
        used[1]=1;
        for(i=1;i<n;i++)
        {
            j=1;
            min=0xfffff;
            for(k=2;k<=n;k++)
            {
                if(lowclose[k]<min&&!used[k])
                    min=lowclose[k],
                    j=k;
            }
            used[j]=1;
            ans+=g[j][closet[j]];
            for(k=2;k<=n;k++)
            {
                if(g[k][j]<lowclose[k]&&!used[k])
                    lowclose[k]=g[k][j],
                    closet[k]=j;
            }
        }
    
    }
    double func(double x1,double y1,double x2,double y2)
    {
        return sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
    }
    int main()
    {
        int i,j,n;
        double t[101][2];
        while(scanf("%d",&n)!=EOF)
        {
            ans=0.0;
            for(i=1;i<=n;i++)
                g[i][i]=0xfffff,
                scanf("%lf %lf",&t[i][0],&t[i][1]);
            for(i=1;i<=n;i++)
            {
                for(j=1+i;j<=n;j++)
                {
                     g[j][i]=g[i][j]=func(t[i][0],t[i][1],t[j][0],t[j][1]);
                }
            }
            prim(n);
            printf("%.2lf
    ",ans);
        }
        return 0;
    }
    View Code
  • 相关阅读:
    HDU 4565 So Easy!(数学+矩阵快速幂)(2013 ACM-ICPC长沙赛区全国邀请赛)
    HDU 4568 Hunter(最短路径+DP)(2013 ACM-ICPC长沙赛区全国邀请赛)
    URAL 1664 Pipeline Transportation(平面图最大流)
    HDU 1250 Hat's Fibonacci(高精度)
    HDU 1042 N!(高精度乘)
    算法模板の计算几何
    算法模板の数据结构
    算法模板の数学&数论
    算法模板之图论
    HDU 3260/POJ 3827 Facer is learning to swim(DP+搜索)(2009 Asia Ningbo Regional)
  • 原文地址:https://www.cnblogs.com/zeze/p/hdoj1162.html
Copyright © 2011-2022 走看看