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

并查集模板

时间:2020-12-25 12:01:55      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ret   ted   connect   --   ==   cte   false   路径压缩   iot   

// 并查集模板,包含路径压缩(参考 findset 函数)以及按秩合并(参考 sz 变量)
class UF {
public:
    vector<int> fa;
    vector<int> sz;
    int n;
    int comp_cnt;
    
public:
    UF(int _n): n(_n), comp_cnt(_n), fa(_n), sz(_n, 1) {
        iota(fa.begin(), fa.end(), 0);
    }
    
    int findset(int x) {
        return fa[x] == x ? x : fa[x] = findset(fa[x]);
    }
    
    bool unite(int x, int y) {
        x = findset(x);
        y = findset(y);
        if (x == y) {
            return false;
        }
        if (sz[x] < sz[y]) {
            swap(x, y);
        }
        fa[y] = x;
        sz[x] += sz[y];
        --comp_cnt;
        return true;
    }
    
    bool connected(int x, int y) {
        x = findset(x);
        y = findset(y);
        return x == y;
    }
};

并查集模板

标签:ret   ted   connect   --   ==   cte   false   路径压缩   iot   

原文地址:https://www.cnblogs.com/bgyx-hyyy/p/14163893.html

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