UVaOJ 10004 - Bicoloring

——by A Code Rabbit


Description

输入一张图,给所有节点染色,直接相连的节点必须是不同颜色的。
输出是否可以只用两种颜色染完这张图。


Types

Date Structure :: Graphs


Analysis

DFS 去模拟染色过程,每次都用与自己不同的颜色去染,发现已经染色的节点则检查颜色是否正确。一旦出现矛盾,就说明无法实现 bicoloring 。


Solution

// UVaOJ 10004
// Bicoloring
// by A Code Rabbit

#include <cstdio>
#include <cstring>

const int LIMITS = 250;

bool graph[LIMITS][LIMITS];
int n, l;

bool is_red[LIMITS];
bool is_colored[LIMITS];

bool Search(int pos, bool color_red);

int main() {
    while (scanf("%d", &n), n) {
        scanf("%d", &l);
        // Inputs.
        memset(graph, false, sizeof(graph));
        for (int i = 0; i < l; ++i) {
            int a, b;
            scanf("%d%d", &a, &b);
            graph[a][b] = true;
            graph[b][a] = true;
        }
        // DFS and outputs.
        memset(is_colored, false, sizeof(is_colored));
        printf("%s\n", Search(0, true) ? "BICOLORABLE." : "NOT BICOLORABLE.");
    }

    return 0;
}

bool Search(int pos, bool color_red) {
    // Exit.
    if (is_colored[pos]) {
        if (is_red[pos] ^ color_red) {
            return false;
        } else {
            return true;
        }
    }
    // Continue.
    is_colored[pos] = true;
    is_red[pos] = color_red;
    bool result = true;
    for (int i = 0; i < n; ++i) {
        if (graph[pos][i]) {
            if (!Search(i, !color_red)) {
                result = false;
                break;
            }
        }
    }
    return  result;
}


下载PDF

参考资料:无

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值