poj 2492 A Bug's Life

简介: 点击打开链接poj 2492 思路:带权并查集 分析: 1 用rank[i] = 0表示关系相同,用rank[i] = 1表示关系不同 2 在输入的时候把两个元素之间的关系建立起来,然后判断当前的两个元素是否在同一个集合里面,如果是则判断是不是属于同一个类型即可。

点击打开链接poj 2492

思路:带权并查集

分析:

1 用rank[i] = 0表示关系相同,用rank[i] = 1表示关系不同

2 在输入的时候把两个元素之间的关系建立起来,然后判断当前的两个元素是否在同一个集合里面,如果是则判断是不是属于同一个类型即可。


代码:

#include<cstdio>
#include<cstring>
#include<iostream>
#include<cstdio>
using namespace std;

const int MAXN = 2010;

int father[MAXN];
int rank[MAXN];

void init(int n){
    memset(rank , 0 , sizeof(rank));
    for(int i = 1 ; i <= n ; i++)
        father[i] = i;
}

int find(int x){
    if(father[x] != x){
       int fa = father[x]; 
       father[x] = find(fa);
       rank[x] = (rank[x]+rank[fa])%2;
    }
    return father[x];
}

bool solve(int x , int y){
    int fx = find(x);
    int fy = find(y);
    if(fx != fy){
        father[fx] = fy;
        rank[fx] = (rank[y]+1-rank[x]+2)%2;
        return true;
    }
    else{
        return rank[x] != rank[y]; 
    } 
}

int main(){
    int n , m , x , y;
    int cas = 1 , Case;
    scanf("%d" , &Case); 
    while(Case--){
        scanf("%d%d" , &n , &m);
        init(n);
        bool isOk = true;
        printf("Scenario #%d:\n" , cas++);
        while(m--){
             scanf("%d%d" , &x , &y); 
             if(!solve(x , y))
                 isOk = false;
        }
        if(!isOk)
            puts("Suspicious bugs found!");
        else
            puts("No suspicious bugs found!");
        puts("");
    }
    return 0;
}



目录
相关文章
|
存储 算法
LeetCode 289. Game of Life
如果活细胞周围八个位置的活细胞数少于两个,则该位置活细胞死亡; 如果活细胞周围八个位置有两个或三个活细胞,则该位置活细胞仍然存活; 如果活细胞周围八个位置有超过三个活细胞,则该位置活细胞死亡; 如果死细胞周围正好有三个活细胞,则该位置死细胞复活;
76 0
LeetCode 289. Game of Life
|
人工智能 BI
[UVA 1599] Ideal Path | 细节最短路
Description New labyrinth attraction is open in New Lostland amusement park. The labyrinth consists of n rooms connected by m passages. Each passage is colored into some color ci .
203 0
POJ-2492,A Bug's Life(分类并查集)
POJ-2492,A Bug's Life(分类并查集)
HDOJ/HDU 1328 IBM Minus One(水题一个,试试手)
HDOJ/HDU 1328 IBM Minus One(水题一个,试试手)
101 0
HDOJ(HDU) 2078 复习时间
HDOJ(HDU) 2078 复习时间
133 0
HDOJ 1339 A Simple Task(简单数学题,暴力)
HDOJ 1339 A Simple Task(简单数学题,暴力)
114 0
HDOJ(HDU) 1408 盐水的故事
HDOJ(HDU) 1408 盐水的故事
194 0