码迷,mamicode.com
首页 > 其他好文 > 详细

并查集模板整理

时间:2020-02-07 18:45:01      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:bae   压缩   pac   open   its   rom   const   初始   ret   

不知道说些啥

技术图片
#include<bits/stdc++.h>
using namespace std;
const int N=500010;
int f[N];
int dep[N],siz[N];
int n,m;
int F(int x){//递归版路径压缩 
    if(f[x]==x)return x;
    f[x]=F(f[x]);
    return f[x];
}
int F(int x){//非递归版路径压缩 
    if(f[x]==x)return x;
    int goal=x;
    while(f[goal]!=foal)goal=f[goal];
    int from=x;
    while(f[from]!=from){
        int to=f[from];
        f[from]=goal;
        from=to;
    }
    return goal;
}
//路径压缩改变了树的父子关系 不可逆 
void U(int x,int y){//按秩合并(秩为深度)
    int A=F(x);
    int B=F(y);
    if(A!=B){
        if(dep[A]<dep[B])swap(A,B);
        f[B]=A;
        dep[A]=max(dep[A],dep[B]+1);
    }
}
void U(int x,int y){//按秩合并(秩为大小)
    int A=F(x);
    int B=F(y);
    if(A!=B){
        if(siz[A]<siz[B])swap(A,B);
        f[B]=A;
        siz[A]+=siz[B];
    }
}
//按秩合并改变了树的形态 可逆 
int main(){
    scanf("%d%d",&n,&m);
    for(int i=1;i<=n;i++){
        f[i]=i;
    }//初始化 
    for(int i=1;i<=m;i++){
        int x,y;
        scanf("%d%d",&x,&y);
        U(x,y);
    } 
}
quick union

可能还有些骚操作 待补

并查集模板整理

标签:bae   压缩   pac   open   its   rom   const   初始   ret   

原文地址:https://www.cnblogs.com/passione-123456/p/12273748.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!