10034 - Freckles 克鲁斯克尔最小生成树!~

 1 /*
 2 10034 - Freckles
 3 克鲁斯克尔最小生成树!~ 
 4 */
 5 #include<iostream>
 6 #include<cstdio>
 7 #include<cmath>
 8 #include<algorithm>
 9 using namespace std;
10 
11 struct node{
12    double x, y;
13 };
14 
15 struct tree{
16    int u, v;
17    double d;
18 };
19 
20 node nd[105];
21 int f[105];
22 tree tt[5010];
23 
24 bool cmp(tree a, tree b){
25    return a.d < b.d;
26 }
27 
28 int getFather(int x){
29    return x==f[x] ? x : f[x]=getFather(f[x]);
30 }
31 
32 int Union(int a, int b){
33    int fa=getFather(a), fb=getFather(b);
34    if(fa!=fb){
35       f[fa]=fb;
36       return 1;
37    }
38    return 0;
39 } 
40 
41 int main(){
42    int t;
43    cin>>t;
44    while(t--){
45       int n;
46       cin>>n;
47       for(int i=1; i<=n; ++i){
48          cin>>nd[i].x>>nd[i].y;
49          f[i]=i;
50       }
51       int cnt=0;
52       for(int i=1; i<n; ++i)
53          for(int j=i+1; j<=n; ++j){
54             tt[cnt].u=i;
55             tt[cnt].v=j;
56             tt[cnt++].d=sqrt((nd[i].x-nd[j].x)*(nd[i].x-nd[j].x) + (nd[i].y-nd[j].y)*(nd[i].y-nd[j].y)); 
57          }
58       sort(tt, tt+cnt, cmp);
59       double sum=0.0;
60       for(int i=0; i<cnt; ++i){
61          if(Union(tt[i].u, tt[i].v))
62             sum+=tt[i].d;
63       }
64       printf("%.2lf\n", sum);
65       if(t) printf("\n");
66    }
67 }

 

转载于:https://www.cnblogs.com/hujunzheng/p/3898428.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值