hdu1162

来源:互联网 发布:基于ssh的网上商城源码 编辑:程序博客网 时间:2024/05/16 11:57

 

Eddy's picture

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


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
31.0 1.02.0 2.02.0 4.0
 


 

Sample Output
3.41
 


 

Author
eddy
 


 

Recommend
JGShining
 


 

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
int f[109];
double x[109],y[109];
struct node{
 
 double dist;
  int a,b;
}road[10100];
int find(int x)
{
 if(x==f[x])
  return x;
 return find(f[x]);
}
int cmp(const void *a,const void *b)
{
 struct node *c,*d;
 c=(struct node *)a;
 d=(struct node *)b;
 return c->dist>d->dist?1:-1;
}
int main()
{
 int n,i,j,k;
 double sum;
 while(scanf("%d",&n)!=EOF)
 {
  for(i=1;i<=n;i++)
   f[i]=i;
  for(i=1;i<=n;i++)
  scanf("%lf%lf",&x[i],&y[i]);
  k=0;
  for(i=1;i<=n;i++)//把点存到结构体中
   for(j=1;j<i;j++)
   {
    road[k].a=i;
    road[k].b=j;
    road[k].dist=sqrt((x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j]));
    k++;

   }
   qsort(road,k,sizeof(road[0]),cmp);
   sum=0;
   for(i=0;i<k;i++)
   {
    road[i].a=find(road[i].a);
    road[i].b=find(road[i].b);
    if(road[i].a!=road[i].b)
    {
     sum+=road[i].dist;
     f[find(road[i].a)]=find(road[i].b);
    }
   }

    printf("%.2f\n",sum);

 }
 return 0;
}

原创粉丝点击