【ybtoj】【最小生成树】【例题2】新的开始

新的开始


Link

传送门
题目


解题思路

很经典的模板题
设一个超级起点,所有点建发电站,视为是所有点向超级起点连边
再做最小生成树就ok了


Code

#include <algorithm> 
#include <iostream>
#include <cstdio>

using namespace std;

struct DT{
	int x, y, s;
}a[95000];
int n, s, num, xx, yy, ans, fa[500];

bool cmp(const DT&k, const DT&l) {
	return k.s < l.s;
}

int find(int x) {
	if (fa[x] == -1) return x;
	fa[x] = find(fa[x]);
	return fa[x];
}

int main() {
	scanf("%d", &n);
	for (int i = 0; i <= n; i++)
		fa[i] = -1;  //我常用的超级起点是0, 所以初值不能设0
	
	for (int i = 1; i <= n; i++) {
		scanf("%d", &s);
		a[++num].x = 0, a[num].y = i, a[num].s = s;  //建发电站-》每个点向0作边
	}
	for (int i = 1; i <= n; i++)
		for (int j = 1; j <= n; j++) {
			scanf("%d", &s);
			a[++num].x = j, a[num].y = i, a[num].s = s;
		}
	sort(a + 1, a + 1 + (n * n + n), cmp);  //以下是普通的最小生成树
	for (int i = 1; i <= (n * n + n); i++) {
		xx = find(a[i].x), yy = find(a[i].y);
		if (xx != yy) {
			fa[xx] = yy;
			ans += a[i].s;
		}
	}
	printf("%d", ans);
} 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值