计蒜客-连线问题-Krucal-并查集

12 篇文章 0 订阅
10 篇文章 0 订阅
这篇博客介绍了如何利用Kruskal算法解决计蒜客平台上的连线问题,并提供了无错误的通过所有测试用例的代码实现。
摘要由CSDN通过智能技术生成
题目链接

无坑,AC代码

#include<bits/stdc++.h>

using namespace std;
const int maxn = 105;
const int inf = 0x3f3f3f3f;
struct point{
	int x, y;
	point(){
	}
	point(int xx, int yy){
		x = xx;
		y = yy;
	}
};
struct edge{
	int u, v;
	double w;
	edge(){
	}
	edge(int uu, int vv, double ww){
		u = uu, v = vv, w = ww;
	}
	bool operator < (const edge a) const{
		return w > a.w;
	}
};
priority_queue<edge>que;
vector<point>arr;
int n, cnt, fa[maxn];
double ans;

void init(){
	cnt = n;
	ans = 0;
	for(int i = 1; i <= n; i++)
		fa[i] = i;
}

int getf(int a){
	if(a == fa[a])
		return a;
	return fa[a] = getf(fa[a]);
}

bool sam(int a, int b){
	if(getf(a) == getf(b))
		return true;
	return false;
}

void merge(int a, int b){
	if(sam(a, b))
		return ;
	fa[getf(a)] = getf(b);
}

double dis(point a, point b){
	return sqrt((a.x - b.x)*(a.x - b.x) + (a.y - b.y)*(a.y - b.y));
}

int main(){
	cin>>n;
	init();
	for(int i = 0; i < n; i++){
		point temp;
		scanf("%d%d", &temp.x, &temp.y);
		arr.push_back(temp);
		for(int j = 0; j < arr.size(); j++)
			que.push(edge(i, j, dis(arr[i], arr[j])));
	}
	while(cnt != 1){
		edge temp = que.top();
		que.pop();
		if(!sam(temp.u, temp.v)){
			merge(temp.u, temp.v);
			cnt--;
			ans += temp.w;
		}
	}
	printf("%.2f\n", ans);
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值