最小生成树问题——Kruskal算法

算法思路

  • 将每条边按权值排序
  • 枚举每条边的两个点和权值,如果a,b不连通,将这条边加入集合中。(是初始时不连通,逐步加到集合中并连同,用并查集实现)

模板题代码:

#include<bits/stdc++.h>
using namespace std;
const int  N = 2e5+10;
int p[N];
int n,m;
struct Edge{
    int a,b,c;
    
    bool operator<(Edge x){//关键字排序,重载运算符
        return c<x.c;
    }
}edge[N];

int find(int x){
    if(p[x]!=x)p[x] = find(p[x]);
    return p[x];
}

int main()
{
    scanf("%d%d",&n,&m);
    int a,b,c;
    for(int i=0;i<m;i++){
        scanf("%d%d%d",&a,&b,&c);
        edge[i] = {a,b,c};
    }
    sort(edge,edge+m);//时间复杂度的瓶颈O(mlogm)
    int res = 0,cnt = 0;
    for(int i=1;i<=n;i++)p[i] = i;
    for(int i=0;i<m;i++){//枚举每条边,n是点,m是边
        int x = edge[i].a,y = edge[i].b,w = edge[i].c;
        x = find(x),y = find(y);
        if(x!=y){
            res += w;
            cnt++;
            p[x] = y;
        }
    }
    if(cnt<n-1)printf("impossible\n");
    else printf("%d\n",res);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

up-to-star

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值