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
  • 相关阅读:
    【译】第26节---配置一对多关系
    【译】第25节---配置一对一关系
    【译】第24节---Fluent API
    pycharm 更改创建文件默认路径和修改字体大小
    软件工程----自我介绍
    课堂作业---读取文件实现求数组中所有子数组和的最大值
    实现数组中连续子数组值和最大
    android-----实现不两个不同的activity的跳转和数据传递
    android------解决editText只输入一行和textView不显示过多的内容
    android-------实现底部导航的模板
  • 原文地址:https://www.cnblogs.com/zeze/p/hdoj1162.html
Copyright © 2011-2022 走看看