HDU 1272 小希的迷宫

本文详细介绍了如何使用并查集数据结构来判断图中是否存在环,并通过具体实例展示了算法实现过程。文章首先定义了并查集的基本操作,如查找根节点和合并集合等,然后通过一个循环输入节点对的方式构建图结构,并利用并查集进行环检测。
摘要由CSDN通过智能技术生成

还是并查集判断环的问题。。。这个题输入弄的很恶心。。。

#include<cstdio>
#include<cstring>
#include<iostream>
#include<iomanip>
#include<queue>
#include<cmath>
#include<stack>
#include<map>
#include<vector>
#include<set>
#include<algorithm>
using namespace std;
typedef long long LL;
const int int_max = 0x07777777;
const int int_min = 0x80000000;

int root[110000];
int vis[110000];
int x,y;
int find (int a){
    while(root[a]!=a){
        a = root[a];
    }
    return a;
}
void combine (int a, int b){
    int aa = find(a);
    int bb = find(b);
    if(aa!=bb){
        root[bb] = aa;
    }
}
int main(int argc, const char * argv[])
{
    while(scanf("%d %d", &x, &y)!=EOF){
        if(x==-1 && y==-1) break;
        if(x==0 && y==0){
            cout << "Yes" << endl;
            continue;
        }
        int result= 0;
        int maxn = 0;
        for(int i = 0; i < 110000; i++) root[i] = i;
        memset(vis, 0, sizeof(vis));
        while(x||y){
            maxn = (maxn < (x < y ? y : x) ? (x < y ? y : x) : maxn);
            vis[x] = 1;
            vis[y] = 1;
            if(find(x)==find(y)) result = 1;
            else combine(x, y);
            cin >> x >> y;
        }
        int count = 0;
        for(int i = 1; i <= maxn; i++){
            if(vis[i] && root[i]==i) count++;
        }
        if(result==1) cout << "No" << endl;
        else {
            if(count!=1) cout << "No" << endl;
            else cout << "Yes" << endl;
        }
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值