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

二分图一?二分图判定

时间:2015-02-15 09:30:01      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:二分图

萌萌哒的传送门

题目讲的是如何在一堆相亲的名单中找出有错误的地方,如两个同性的被安排相亲;

因为相亲的两个人必定是异性,所以题目可以转化为黑白染色问题.


何为黑白染色问题......................

在一个无向图中,对图中所有的顶点染黑白俩色,并且要求共边的两个端点的颜色不能相同.


所以很容易想到直接dfs,对每一个还未染色的顶点进行染色,如果发现当前无法染成所需的,

则退出搜索.否则继续,注意图有可能不联通.


#include <iostream>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <set>
#include <map>
#include <queue>
#include <vector>
#include <cstdlib>
#include <algorithm>

#define ls u << 1
#define rs u << 1 | 1
#define lson l, mid, u << 1
#define rson mid + 1, r, u << 1 | 1
#define INF 0x3f3f3f3f

using namespace std;
typedef long long ll;
const int M = 1e4 + 100;
const int mod = 2147483647;
int c[M];
vector<int>G[M];

bool dfs(int u) {
    for(int i = 0; i < G[u].size(); i++) {
        int co = G[u][i];
        if(c[co] == -1) {
            c[co] = c[u] ^ 1;
            if(!dfs(co)) return false;
        } else {
            if(c[co] == c[u]) return false;
        }
    }
    return true;
}

int main() {
    int T,n,m;
    cin>>T;
    while(T--) {
        scanf("%d %d",&n,&m);
        memset(c,-1,sizeof(c));
        while(m--) {
            int a,b;
            scanf("%d %d",&a,&b);
            G[a].push_back(b);
            G[b].push_back(a);
        }
        bool isGO = true;
        for(int i = 1; i <= n && isGO; i++) {
            if(c[i] == -1) {
                c[i] = 0;
                if(!dfs(i)) isGO = false;
            }
        }
        if(isGO) puts("Correct");
        else puts("Wrong");
        for(int i = 1; i <= n; i++) G[i].clear();
    }
    return 0;
}



二分图一?二分图判定

标签:二分图

原文地址:http://blog.csdn.net/zsgg_acm/article/details/43821847

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