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

并查集

时间:2018-09-14 23:07:19      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:include   div   ace   std   max   highlight   can   void   mes   

代码1:

#include <bits/stdc++.h>
using namespace std;

const int maxn = 1e5 + 10;
int par[maxn];
int rank[maxn];

void init(int n) {
    for(int i = 0; i < n; i ++) {
        par[i] = i;
        rank[i] = 0;
    }
}

int find(int x) {
    if(par[x] == x)
        return x;
    else
        return par[x] = find(par[x]);
}

int unite(int x, int y) {
    x = find(x);
    y = find(y);
    if(x == y) return;

    if(rank[x] < rank[y])
        par[x] = y;
    else {
        par[y] = x;
        if(rank[x] == rank[y])
            rank[x] ++;
    }
}

bool same(int x, int y) {
    return find(x) == find(y);
}

  

代码2:

#include <bits/stdc++.h>
using namespace std;

int N;
int c;
int fa[20];

int dfs(int z) {
    if(fa[z] == z) return z;
    else
        return fa[z] = dfs(fa[z]);
}

int main() {
    scanf("%d", &N);
    for(int i = 1; i <= N; i ++)
        fa[i] = i;
    while(N --) {
        int x, y;
        scanf("%d", &c);
        scanf("%d%d", &x, &y);
        if(c == 0)
            fa[y] = dfs(x);
        else if(c == 1) {
            if(dfs(x) == dfs(y))
                printf("YES\n");
            else
                printf("NO\n");
        }
    }
    return 0;
}

  

并查集

标签:include   div   ace   std   max   highlight   can   void   mes   

原文地址:https://www.cnblogs.com/zlrrrr/p/9649095.html

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