【合并集合】

【合并集合】,第1张

基本 *** 作: 模板题


并查集:最优美的数据结构

建议多敲几遍理解 本题模板的路径压缩, 有兴趣的可以了解一下按秩合并的优化方式, 当路径优化和按秩合并在一起时, 他们的时间复杂度将是 O(n(α)) 的大小

#include 
#define int long long

using namespace std;

const int N = 1e5 + 10;

int fa[N];
int n, m;

int find(int x)
{
    return x == fa[x] ? x : fa[x] = find(fa[x]); // 非常简洁的写法
}
signed main()
{
    cin >> n >> m;
    
    for(int i = 1; i <= n; i ++ )
        fa[i] = i; // 注意要初始化
    
    while(m -- )
    {
        char op;
        int s1, s2;
        cin >> op >> s1 >> s2;
        
        
        if(op == 'M') fa[find(s1)] = find(s2);
        else 
        {
            if(find(s1) != find(s2)) cout << "No" << endl;
            else cout << "Yes" << endl;
        }
    }
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/676245.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-19
下一篇 2022-04-19

发表评论

登录后才能评论

评论列表(0条)

保存