当前位置:网站首页>AcWing 346. 走廊泼水节 题解(推公式、最小生成树)
AcWing 346. 走廊泼水节 题解(推公式、最小生成树)
2022-07-06 18:00:00 【乔大先生】
AcWing 346. 走廊泼水节
解题关键在于推出公式:**(Size[a] * Size[b] - 1) * (w + 1)**这个公式的意义按揭的:遍历到某条边连接的属于两个不同的连通块的两个点,将两个联通块的所有点互相连接,减去已经存在的一条边 ,推出公式后,按照最小生成树的算法遍历所有边,找出不在一个连通块的两个点用公式累加计算值
#include<bits/stdc++.h>
using namespace std;
const int N = 6010;
struct Edge{
int a, b, w;
bool operator< (const Edge &t) const {
return w < t.w;
}
}e[N * 4];
int T, n, m;
int p[N];
int Size[N];
int find(int x){
if(x != p[x]) p[x] = find(p[x]);
return p[x];
}
int main()
{
cin>>T;
while(T -- ){
cin>>n;
int res = 0;
for(int i = 0; i < n - 1; i ++ ){
int a, b, w;
cin>>a>>b>>w;
e[i] = {
a, b, w};
}
//初始化并查集数组
for(int i = 1; i <= n; i ++ ){
p[i] = i;
Size[i] = 1;
}
sort(e, e + n - 1);
for(int i = 0; i < n - 1; i ++ ){
int a = find(e[i].a), b = find(e[i].b), w = e[i].w;
if(a != b){
res += (Size[a] * Size[b] - 1) * (w + 1); //公式,将两个联通块的所有点互相连接,减去已经存在的一条边
p[a] = b;
Size[b] += Size[a];
}
}
cout<<res<<endl;
}
return 0;
}
边栏推荐
- C# 计算农历日期方法 2022
- 前置机是什么意思?主要作用是什么?与堡垒机有什么区别?
- The cost of returning tables in MySQL
- C language instance_ five
- taro3.*中使用 dva 入门级别的哦
- Your cache folder contains root-owned files, due to a bug in npm ERR! previous versions of npm which
- 405 method not allowed appears when the third party jumps to the website
- Add the applet "lazycodeloading": "requiredcomponents" in taro,
- 云呐|工单管理办法,如何开展工单管理
- 树莓派/arm设备上安装火狐Firefox浏览器
猜你喜欢
随机推荐
身体质量指数程序,入门写死的小程序项目
各种语言,软件,系统的国内镜像,收藏这一个仓库就够了: Thanks-Mirror
The MySQL database in Alibaba cloud was attacked, and finally the data was found
Using the entry level of DVA in taro3.*
Share a general compilation method of so dynamic library
swiper组件中使用video导致全屏错位
json学习初体验–第三者jar包实现bean、List、map创json格式
The difference between spin and sleep
Implementation principle of waitgroup in golang
HMM notes
今日问题-2022/7/4 lambda体中修改String引用类型变量
golang中的Mutex原理解析
How to evaluate load balancing performance parameters?
736. LISP syntax parsing: DFS simulation questions
Gnet: notes on the use of a lightweight and high-performance go network framework
table表格设置圆角
负载均衡性能参数如何测评?
C# 计算农历日期方法 2022
[advanced C language] 8 written questions of pointer
力扣1037. 有效的回旋镖