P3366 模板最小生成树
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P3366 模板最小生成树相关的知识,希望对你有一定的参考价值。
https://www.luogu.com.cn/problem/P3366
#include<bits/stdc++.h>
using namespace std;
const int N=1e4+10;
int p[N],n,m;
struct node{int a,b,c;};
bool cmp(node a,node b){return a.c<b.c;}
vector<node>ve;
int find(int x)
{
if(x!=p[x]) p[x]=find(p[x]);
return p[x];
}
int f()
{
int res=0,cnt=0;
for(int i=1;i<=n;i++) p[i]=i;
sort(ve.begin(),ve.end(),cmp);
for(int i=0;i<ve.size();i++)
{
int a=ve[i].a,b=ve[i].b,c=ve[i].c;
if(find(a)!=find(b))
{
p[find(a)]=find(b);
res+=c;
cnt++;
}
}
if(cnt==n-1) return res;
else return -1;
}
int main(void)
{
cin>>n>>m;
while(m--)
{
int a,b,c; cin>>a>>b>>c;
ve.push_back({a,b,c});
}
int ans=f();
if(ans==-1) puts("orz");
else cout<<ans;
return 0;
}
以上是关于P3366 模板最小生成树的主要内容,如果未能解决你的问题,请参考以下文章