杭电--1162--Eddy's picture--并查集

Eddy's picture

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


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
 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cmath>
 4 #include <algorithm>
 5 using namespace std;
 6 int father[111111];
 7 double s;
 8 struct ssss
 9 {
10  double a,b;
11 }ss[111];
12 struct dddd
13 {
14  int a,b;
15  double x;
16 }dd[5000];
17 int Find(int a)
18 {
19  return a==father[a]?a:father[a]=Find(father[a]);
20 }
21 void Union(int i)
22 {
23  int a=Find(dd[i].a),b=Find(dd[i].b);
24  if(a!=b)father[a]=b,s+=dd[i].x; //只有没有连通的才能进行这一步,所以每次都是需要连通的最短距离
25 }
26 bool cmp(const dddd &a,const dddd &b)
27 {
28  return a.x<b.x;
29 }
30 int main (void)
31 {
32  int n,i,j,k,l;
33  while(cin>>n)
34  {
35   for(i=0;i<n;i++)
36    cin>>ss[i].a>>ss[i].b;
37   for(i=0;i<111111;i++)father[i]=i; //初始化
38   for(i=l=0;i<n;i++)
39    for(j=i+1;j<n;j++)
40    {
41     dd[l].a=i,dd[l].b=j;
42     double x=ss[i].a-ss[j].a,y=ss[i].b-ss[j].b;
43     dd[l++].x=sqrt(x*x+y*y);  //老规矩,把距离存两点一起
44    }
45    sort(dd,dd+l,cmp);
46    for(i=0,s=0;i<l;i++)
47     Union(i); //并起来
48    printf("%.2f
",s);
49  }
50  return 0;
51 }
AC代码
原文地址:https://www.cnblogs.com/jingdianITnan/p/3228261.html