1142. 繁忙的都市最小生成树

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1142. 繁忙的都市最小生成树相关的知识,希望对你有一定的参考价值。


https://www.acwing.com/problem/content/1144/

#include<bits/stdc++.h>
using namespace std;
const int N=1e3+10;
struct node{int a,b,c;};
bool cmp(node a,node b) {return a.c<b.c;}
int p[N],n,m,cnt,ans;
vector<node>ve;
int find(int x)
{
    if(x!=p[x]) p[x]=find(p[x]);
    return p[x];
}
void f()
{
    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))
        {
            cnt++;
            ans=max(ans,c);
            p[find(a)]=find(b);
        }
    }
}
int main(void)
{
    cin>>n>>m;
    while(m--)
    {
        int a,b,c; cin>>a>>b>>c;
        ve.push_back({a,b,c});
    }
    f();
    cout<<cnt<<" "<<ans<<endl;
    return 0;
}

以上是关于1142. 繁忙的都市最小生成树的主要内容,如果未能解决你的问题,请参考以下文章

bzoj1083: [SCOI2005]繁忙的都市(最小生成树)

bzoj 1083: [SCOI2005]繁忙的都市 (最小生成树)

BZOJ 1083: [SCOI2005]繁忙的都市 裸的最小生成树

ybtojluogu最小生成树例题1繁忙都市

最小生成树——繁忙的都市

BZOJ 1083: [SCOI2005]繁忙的都市Kruscal最小生成树裸题