poj1129 Channel Allocation(染色问题)
题目链接:poj1129 Channel Allocation
题意:要求相邻中继器必须使用不同的频道,求需要使用的频道的最少数目。
题解:就是求图的色数,这里采用求图的色数的近似有效算法——顺序着色算法(实质是一种贪心策略:在给任何一个顶点着色时,采用其邻接顶点中没有使用的,编号最小的颜色)。
注:中继器网络是一个平面图,即图中不存在相交的边。
看讨论后发现这组数据,AC代码没过orz:
6
A:BEF
B:AC
C:BD
D:CEF
E:ADF
F:ADE 正确答案应该是3 : A(1)B(2)C(3)D(1)E(2)F(3)但是AC的代码得出了错误答案4
数据弱啊ORZ。。。。。。
顺序着色算法(有问题的AC代码,毕竟这是求近似解,不能保证解最优):
#include<cstdio>
#include<cmath>
#include<queue>
#include<cstring>
#include<algorithm>
#define CLR(a,b) memset((a),(b),sizeof((a)))
using namespace std; const int N = ; char s[N];
int g[N][N];
int n, ans;
bool vis[N]; //每种颜色的使用标记
int color[N]; //各顶点的颜色
void greedy(){
int i, j;
for(i = ; i < n; ++i){
CLR(vis,);
for(j = ; j < n; ++j){
if(g[i][j] && color[j] != -){//邻接顶点j已经着色
vis[color[j]] = ;
}
}
for(j = ; j <= i; ++j){
//j为顶点i的所有邻接顶点中没有使用的,编号最小的颜色
if(!vis[j])break;
}
color[i] = j;//给i着色第j种颜色
}
for(i = ; i < n; ++i)
if(color[i] > ans)
ans = color[i];
ans++;
}
int main(){
int i, j, l;
while(~scanf("%d", &n),n){
CLR(g,);
ans = ;
for(i = ; i < n; ++i)
color[i] = -;
for(i = ; i < n; ++i){
scanf("%s", s);
l = strlen(s) - ; //与第i个中继器相邻的中继器数目
for(j = ; j < l; ++j){
g[i][s[j+]-'A'] = ;
g[s[j+]-'A'][i] = ;
}
}
greedy();
if(ans == )
printf("%d channel needed.\n", ans);
else
printf("%d channels needed.\n", ans);
}
return ;
}
在网上搜了一下,找到个正确的AC代码,用四色定理加深搜可解:
#include<cstdio>
#include<cstring>
#include<algorithm>
#define CLR(a,b) memset((a),(b),sizeof((a)))
using namespace std;
const int N = ; char s[N];
int n, ans;
int color[N];
bool g[N][N];
bool jud(int x, int c){
for(int i = ; i < n; ++i)
if(i != x && g[x][i] && color[i] == c)
return ;
return ;
}
void dfs(int x){
if(x == n){
ans = min(ans, *max_element(color, color + n));
return;
}
for(int i = x; i < n; ++i){
for(int j = ; j <= ; ++j){
if(jud(i, j)){
color[i] = j;
dfs(i + );
}
}
}
}
int main(){
int i, j, l;
while(~scanf("%d",&n),n){
CLR(g,);
CLR(color,);
color[] = ;
ans = ;
for(i = ; i < n; ++i){
scanf("%s", s);
l = strlen(s) - ;
for(j = ; j < l; ++j){
g[i][s[j+]-'A'] = ;
g[s[j+]-'A'][i] = ;
}
}
dfs();
if(ans == )
printf("%d channel needed.\n", ans);
else
printf("%d channels needed.\n", ans);
}
return ;
}
poj1129 Channel Allocation(染色问题)的更多相关文章
- poj1129 Channel Allocation
Channel Allocation Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 14361 Accepted: 73 ...
- 快速切题 poj1129 Channel Allocation
Channel Allocation Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 12334 Accepted: 63 ...
- PKU 1129 Channel Allocation(染色问题||搜索+剪枝)
题目大意建模: 一个有N个节点的无向图,要求对每个节点进行染色,使得相邻两个节点颜色都不同,问最少需要多少种颜色? 那么题目就变成了一个经典的图的染色问题 例如:N=7 A:BCDEFG B:ACDE ...
- POJ-1129 Channel Allocation (DFS)
Description When a radio station is broadcasting over a very large area, repeaters are used to retra ...
- POJ 1129 Channel Allocation(DFS)
Channel Allocation Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 13173 Accepted: 67 ...
- POJ 1129:Channel Allocation 四色定理+暴力搜索
Channel Allocation Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 13357 Accepted: 68 ...
- 迭代加深搜索 POJ 1129 Channel Allocation
POJ 1129 Channel Allocation Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 14191 Acc ...
- Channel Allocation
Channel Allocation Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 13231 Accepted: 6774 D ...
- Channel Allocation (poj 1129 dfs)
Language: Default Channel Allocation Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 12 ...
随机推荐
- Know How To Use ID_NULL Function To Search An Object In Oracle Forms
ID_NULL built in function is used to determine that an object type variable is null or not null in O ...
- FZU 2216 The Longest Straight(最长直道)
Description 题目描述 ZB is playing a card game where the goal is to make straights. Each card in the dec ...
- 微博传播数量和传播深度的预测--基于pyspark和某个回归算法
8-28决定参加一下这个千万条的数据处理任务,因为场景和自己做过的一个回归分析预测差不多,第一天开始在小规模的数据上做准备工作. 第二次大修改版本 date 20160829 星期一¶ 原始数据处理, ...
- Python基础学习笔记(二)变量类型
参考资料: 1. <Python基础教程> 2. http://www.runoob.com/python/python-chinese-encoding.html 3. http://w ...
- js文件的装载和执行
1.浏览器对script引用的js文件分两步,下载,下载完毕后马上执行:这两步都会阻塞浏览器继续解析. 2.加入defer属性,<script defer type="text/jav ...
- Eclipse 高亮显示选中的相同变量
问题描述: 在 eclipse 中使用快捷键或其他原因,不小心按错了,使得变量的高亮显示没了. 1.网友解决方法: 选择:windows-> preferences->java-> ...
- DOM解析XML练习
首先以XML文件存储数据,格式如下(作为数据库) exam.xml <?xml version="1.0" encoding="UTF-8" standa ...
- 用Java集合中的Collections.sort方法对list排序的两种方法
用Collections.sort方法对list排序有两种方法第一种是list中的对象实现Comparable接口,如下: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ...
- jQuery学习笔记:attr()与prop()的区别
先看看官方文档是如何解释两者之间功能差异的: attr() Get the value of an attribute for the first element in the set of matc ...
- Linux的中断 & 中断和异常的区别
参考 http://www.yesky.com/20010813/192117.shtml 结构化程序设计思想认为:程序 = 数据结构 + 算法.数据结构体现了整个系统的构架,所以数据结构通常都是代码 ...