HYSBZ_1854_并查集

Posted 冷暖知不知

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HYSBZ_1854_并查集相关的知识,希望对你有一定的参考价值。

http://www.lydsy.com/JudgeOnline/problem.php?id=1854

 

每次判断每组两个数的根,若不等,则小的遍历1,大的为根,若相等,则说明前面的小的都遍历过,根遍历1。最后判断vis即可。

 

#include<iostream>
#include<cstdio>
using namespace std;
int pre[1000005],vis[1000005] = {0};

int findd(int x)
{
    int root = x;
    while(root != pre[root])    root = pre[root];
    int temp;
    while(x != pre[x])
    {
        temp = pre[x];
        pre[x] = root;
        x = temp;
    }
    return root;
}

void join(int x,int y)
{
    int xx = findd(x),yy = findd(y);
    if(xx == yy)    vis[xx] = 1;
    else
    {
        if(xx > yy) swap(xx,yy);
        pre[xx] = yy;
        vis[xx] = 1;
    }
}
int main()
{
    int n;
    scanf("%d",&n);
    for(int i = 1;i <= 100005;i++)   pre[i] = i;
    while(n--)
    {
        int a,b;
        scanf("%d%d",&a,&b);
        join(a,b);
    }
    int i;
    for(i = 1;i <= n;i++)
    {
        if(vis[i] == 0) break;
    }
    printf("%d",i-1);
    return 0;
}

 

以上是关于HYSBZ_1854_并查集的主要内容,如果未能解决你的问题,请参考以下文章

1854: [Scoi2010]游戏[并查集]

bzoj 1854 并查集 + 贪心

bzoj1854 游戏题解(二分图/并查集)

BZOJ-1854-[Scoi2010]游戏(并查集)

逆向并查集 HYSBZ1015星球大战starwar

BZOJ 1854: [Scoi2010]游戏 [连通分量 | 并查集 | 二分图匹配]