zoukankan      html  css  js  c++  java
  • HDU 1162 Eddy's picture

    坐标之间的距离的方法,prim算法模板。       

                         Eddy's picture

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

    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
    Author
    #include<stdio.h>
    #include<math.h>
    #define N 110
    #define max 9999999
    double map[N][N];
    void prim(int n)
    {
        int i,j,u,flag,mark[N];
        double dis[N],cost,min;
        for(i=0;i<n;i++)
        {
            mark[i]=0;
            dis[i]=map[0][i];
        }
        mark[0]=1;
        cost=0;
        for(i=1;i<n;i++)
        {
            min=max;
            for(j=1;j<n;j++)
                if(!mark[j]&&min>dis[j])
                {
                    u=j;
                    min=dis[j];
                }
        
            mark[u]=1;
            cost+=min;
            for(j=1;j<n;j++)
                if(!mark[j]&&dis[j]>map[u][j])
                    dis[j]=map[u][j];
        }
         printf("%.2f
    ",cost);
    }
    int main()
    {
        int i,j,n;
        double dis,x2,y2,x[N],y[N];
         while(~scanf("%d",&n))
         {
         for(i=0;i<n;i++)
                scanf("%lf%lf",&x[i],&y[i]);
            for(i=0;i<n;i++)
                for(j=0;j<=i;j++)
                {
                    x2=(x[i]-x[j])*(x[i]-x[j]);
                    y2=(y[i]-y[j])*(y[i]-y[j]);
                    dis=sqrt(x2+y2);
                    if(i==j)
                        map[j][i]=map[i][j]=0;
                    else
                        map[i][j]=map[j][i]=dis;
                }
            prim(n);
         }
       return 0;
    }
  • 相关阅读:
    Qt5."Clang Code Model"一些设置
    基于element表格的合并多个行实例
    vue中,基于echarts 地图实现一个人才回流的大数据展示效果
    vue2.0 子组件props接受父组件传递的值,能不能修改的问题整理
    vue调用组件,组件回调给data中的数组赋值,报错Invalid prop type check failed for prop value. Expecte
    vue,基于element的tree组件封装
    vue父子组件相互传值的实例
    基于vant实现一个问卷调查
    css3实现倾斜转动的转盘
    0801 am使用tp框架对数据库增删改查
  • 原文地址:https://www.cnblogs.com/cancangood/p/3306197.html
Copyright © 2011-2022 走看看