hdu1233

/**/
#include <cstdio>
#include <cstring>
#include <cmath>
#include <cctype>
#include <iostream>
#include <algorithm>
#include <map>
#include <set>
#include <vector>
#include <string>
#include <stack>
#include <queue>

typedef long long LL;
using namespace std;

int n;
int cnt;
int f[105];
struct node
{
	int u, v, w;
	bool operator <(const node &x)const{
		return w < x.w;
	}
}a[100005];

int Find(int x){
	return x == f[x] ? x : Find(f[x]);
}

void kruskal(){
	for (int i = 1; i <= n; i++) f[i] = i;
	sort(a, a + cnt);
	int tot = 0;
	int ans = 0;
	for (int i = 0; i < cnt; i++){
		int x = Find(a[i].u), y = Find(a[i].v);
		if(x != y){
			f[x] = y;
			tot++;
			ans += a[i].w;
			if(tot == n - 1) break;
		}
	}
	printf("%d\n", ans);
}

int main()
{
	//freopen("in.txt", "r", stdin);
	//freopen("out.txt", "w", stdout);

	while(scanf("%d", &n) == 1){
		int u, v, w;
		if(n == 0) break;
		cnt = 0;
		for (int i = 1; i <= n * (n - 1) / 2; i++){
			scanf("%d %d %d", &u, &v, &w);
			a[cnt].u = u, a[cnt].v = v, a[cnt].w = w;
			cnt++;
			a[cnt].u = v, a[cnt].v = u, a[cnt].w = w;
			cnt++;
		}
		kruskal();
		
	}

	return 0;
}
/**/

 

全部评论

相关推荐

已老实求offer😫:有点像徐坤(没有冒犯的意思哈)
点赞 评论 收藏
分享
10-28 11:04
已编辑
美团_后端实习生(实习员工)
一个2人:我说几个点吧,你的实习经历写的让人觉得毫无含金量,你没有挖掘你需求里的 亮点, 让人觉得你不仅打杂还摆烂。然后你的简历太长了🤣你这个实习经历看完,估计没几个人愿意接着看下去, sdk, 索引这种东西单拎出来说太顶真了兄弟,好好优化下简历吧
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务