畅通工程问题

博客提及了CodeUP题目地址,但未给出更多详细信息。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

CodeUP题目地址

#include <stdio.h>
#include<iostream>
#include <string.h>
#include <string>
#include <algorithm>
#include <map>
#include <vector>
#include <set>
#include <queue>
using namespace std;
const int maxn = 110;
const int MaxL = 5000;
int father[maxn];
typedef struct edge {
	int a, b;//两个顶点
	int w;//边的权重
}edge;
bool cmp(edge e1, edge e2)
{
	return e1.w < e2.w;
}
int FindRoot(int s)
{
	while (s != father[s])
		s = father[s];

	return s;
}
int main()
{
	int n;
	while (cin >> n && n != 0)
	{
		for (int i = 0; i<n; i++)
			father[i] = i;
		edge E[MaxL];
		for (int i = 0; i<n*(n-1)/2; i++)
			scanf("%d%d%d", &E[i].a, &E[i].b, &E[i].w);

		sort(E, E + n * (n - 1) / 2, cmp);
		int a, b, roota, rootb, res = 0;
		for (int i = 0; i<n*(n - 1) / 2; i++)
		{
			a = E[i].a;
			b = E[i].b;
			roota = FindRoot(a);
			rootb = FindRoot(b);
			if (roota != rootb)
			{
				father[roota] = rootb;//此处千万不能将a,b合并,否则集合会合并失败
				res += E[i].w;
			}
		}
		printf("%d\n", res);
	}
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值