uva 193 - Graph Coloring

点击打开链接

题目意思:  给定n个节点,节点的编号为1-n,在给定m个节点链接的信息,现在要求对节点图色,只有两种颜色可以黑色和白色并且相邻的节点不能同时为黑色但是可以为白色,要求黑色节点最多的个数,以及一组节点的编号

解题思路:  对于节点而言,每一个节点就是两种情况,白色或黑色,那么我们知道这一个解空间树的每一层就是一个节点,那么我们只要去搜索这个解空间就可以了,这一题的数据虽然n到达100,但是真正的数据没那么大,不会超时。

注意事项:   这一题uva最后没有换行 , poj有换行,注意这个问题

代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <cctype>
#include <algorithm>
using namespace std;
const int MAXN = 110;

//我们规定1是黑色  0是白色
int m, n, k;
int G[MAXN][MAXN]; //矩阵
int ans[MAXN];//存储点的编号
int color[MAXN];//存储每个节点的颜色编号
int maximum;//最大的黑色的个数

//判断是否链接的两点是否颜色相反
int judge(int k) {
    for (int i = 1; i <= n; i++) {
        if (G[k][i]) {
            if (color[k] && color[i])//如果有两个链接的点的颜色相同那么就返回0
                return 0;
        }
    }
    return 1;
}

//搜索
void dfs(int k) {
    if (k > n) {
        int max = 0;
        for (int j = 1; j <= n; j++)
            if (color[j]) ++max;
        if(max > maximum){//更新最优解
            maximum = max;
            int t = 1;
            for(int j = 1 ; j <= n ; j++){
                if(color[j]){
                    ans[t++] = j;//记录黑色的节点编号
                }
            }
        }
    }
    if(k <= n){//递归求解节点
        for (int i = 0; i <= 1; i++) {//两种颜色啊1 和 2
            color[k] = i;
            if (judge(k))
                dfs(k+1);
            color[k] = 0;//现场的恢复
        }
        ++k;//下一个节点
    }
}

//
int main() {
    int x, y;
    scanf("%d", &m);
    while (m--) {
        memset(G, 0, sizeof (G));
        memset(ans, 0, sizeof (ans));
        memset(color , 0 , sizeof(color));
        maximum = 0;
        scanf("%d%d", &n, &k);
        for (int i = 1; i <= k; i++) {
            scanf("%d%d", &x, &y);
            G[x][y] = 1;//邻接矩阵
            G[y][x] = 1;
        }
        dfs(1);
        //输出结果
        printf("%d\n", maximum);//输出最大值
        int cnt = 0;
        for (int i = 1; i <= maximum; ++i) {//控制输出节点的编号
            if (ans[i] && cnt == 1)
                printf(" %d", ans[i]);
            if (ans[i] && cnt == 0) {
                cnt = 1;
                printf("%d", ans[i]);
            }
        }
        printf("\n\n");//最后的换行还有空行
    }
    return 0;
}
时间: 2024-10-31 20:59:12

uva 193 - Graph Coloring的相关文章

UVa 193:Graph Coloring

题目链接: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=108&page=show_problem&problem=129 原题: You are to write a program that tries to find an optimal coloring for a given graph. Colors are applied to the nodes

uva 10720 - Graph Construction

点击打开链接uva 10720 题目意思:   给定n个顶点的度,判断当前的这些顶点能否构成图 解题思路:   1: 贪心 2: Havel定理(证明可图化)   可简单图化的判定:把序列排成不增序,即d1>=d2>=-->=dn,则d可简单图化当且仅当d'={d2-1,d3-1,--d(d1+1)-1, d(d1+2),d(d1+3),--dn}可简单图化.简单的说,把d排序后,找出度最大的点(设度为d1),把它与度次大的d1个点之间连边,然后这个点就可以不管了,一直继续这个过程,直到

UVa 10720:Graph Construction

链接: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=113&page=show_problem&problem=1661 原题: Graph is a collection of edges E and vertices V. Graph has a wide variety of applications in computer. There are diffe

图论科学家教你如何安排婚礼座次

摘要:完美图,指的是用尽可能有限的一组颜色着色的网络图.在给图表着色时,每一个处于相互之间密集联系的"团"内的节点都必须被指定一个独一无二的颜色.而至今为止,关于如何处理方形结构的着色,仍然没有得到解决. 四年前,数学家Maria Chudnovsky 遭遇到一个常见困境:如何给120名参加婚礼的客人安排好座位,在所有客人中有可能存在矛盾,问题的关键在于如何避免将有矛盾的客人安排在同一张桌子前就座.很幸运,这个问题恰巧在她的研究领域内.Maria把客人视作网络中的节点,用线将"

[WebKit] JavaScriptCore解析--高级篇(三) Register Allocation &amp;amp; Trampoline

Register Allocation 对于一个JIT而言,寄存器分配对系统的消耗通常是一个瓶径.之前有Graph Coloring Allocators, Chaitin style等分配方式,现在要介绍的是DFG JIT使用的Linear Scan算法.其基本工作方式是将占用寄存器的变量根据生命周期长短排列出来,在使用时查看可以回收哪些寄存器加以利用. 先看一些定义: •Live interval:是某个变量可以存活的一个指令序列,也可以称为了连续性.这个也依赖于算法使用的是深度优先还是广度

算法题:UVa 11069 A Graph Problem (斐波那契)

A Graph Problem Time limit: 2s Given an undirected graph of the following form with n nodes, 1 ≤ n ≤ 76: Your task is to calculate the number of subsets of nodes of the graph with the following properties: no nodes in the subset should be connected i

UVa 10004:Bicoloring

题目链接: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=105 题目类型:搜索 题目: In 1976 the ``Four Color Map Theorem" was proven with the assistance of a computer. This theorem states that every map can be colored using on

UVa 10305:Ordering Tasks , 经典的拓扑排序

题目链接: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=105&page=show_problem&problem=1246 题目类型: 拓扑排序 题目: John has n tasks to do. Unfortunately, the tasks are not independent and the execution of one task is onl

UVa 140:Bandwidth

题目链接: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=108&page=show_problem&problem=76 类型: 回溯 原题: Given a graph (V,E) where V is a set of nodes and E is a set of arcs in VxV, and an ordering on the elements in