【poj2942】 Knights of the Round Table

http://poj.org/problem?id=2942 (题目链接)

题意

  有n个骑士要去参加圆桌会议,他们将围成一圈,想要他们不打架,当且仅当参加圆桌会议的骑士数为奇数并且相邻的两个骑士不互相憎恨。现在给出m条骑士之间两两憎恨的关系,问有多少骑士无论在何种情况下都不能参加圆桌会议。

Solution

  思路到是很简单,先构出原图的补图,补图中每条边代表这两个骑士可以相邻。那么很显然,如果某一个骑士处于任意一个奇环中,那么他就可以参加会议。

  这个问题该怎么处理呢?我们用Tarjan求出点-双连通分量,对于每一个点双,通过黑白染色看是否存在奇环,若染色不成功,那么存在奇环,否则是偶环。

细节

  Tarjan真是恶心爆。。求点-双一定要存边,这样可以避免很多分类讨论。。。

代码

// bzoj1013
#include<algorithm>
#include<iostream>
#include<cstdlib>
#include<cstring>
#include<cstdio>
#include<vector>
#include<cmath>
#define LL long long
#define inf 2147483640
#define eps 1e-7
#define Pi acos(-1.0)
#define free(a) freopen(a".in","r",stdin),freopen(a".out","w",stdout);
using namespace std;
inline int gi() {
	int x=0,f=1;char ch=getchar();
	while (ch<‘0‘ || ch>‘9‘) {if (ch==‘-‘) f=-1;ch=getchar();}
	while (ch>=‘0‘ && ch<=‘9‘) {x=x*10+ch-‘0‘;ch=getchar();}
	return x*f;
}

const int maxn=1010,maxm=1000010;
struct edge {int to,next;}e[maxm<<1];
struct data {int u,v;}s[maxn];
int vis[maxn],dfn[maxn],low[maxn],f[maxn][maxn],pos[maxn];
int ind,cnt,top,n,m,num,p,id[maxn],head[maxn];
vector<int> v[maxn];

void link(int u,int v) {
	e[++cnt].to=v;e[cnt].next=head[u];head[u]=cnt;
}
void Init() {
	for (int i=1;i<=num;i++) v[i].clear();
	cnt=ind=top=num=0;
	memset(head,0,sizeof(head));
	memset(vis,0,sizeof(vis));
	memset(dfn,0,sizeof(dfn));
	memset(low,0,sizeof(low));
	memset(pos,0,sizeof(pos));
	memset(id,0,sizeof(id));
	memset(f,0,sizeof(f));
}
void Tarjan(int x,int fa) {
	dfn[x]=low[x]=++ind;
	for (int i=head[x];i;i=e[i].next) if (e[i].to!=fa) {
			if (!dfn[e[i].to]) {
				s[++top]=(data){x,e[i].to};
				Tarjan(e[i].to,x);
				low[x]=min(low[x],low[e[i].to]);
				if (low[e[i].to]>=dfn[x]) {
					num++;
					while (1) {
						v[num].push_back(s[top].u);v[num].push_back(s[top].v);
						if (s[top].u==x && s[top].v==e[i].to) break;
						top--;
					}
					top--;
				}
			}
			else low[x]=min(low[x],dfn[e[i].to]);
		}
}
bool dfs(int x,int col) {
	id[x]=col;
	for (int i=head[x];i;i=e[i].next)
		if (pos[e[i].to]==p) {
			if (!id[e[i].to]) {
				if (!dfs(e[i].to,col^1)) return 0;
			}
			else if (id[e[i].to]==id[x]) return 0;
		}
	return 1;
}
void work(int x) {
	vis[x]=1;
	for (int i=head[x];i;i=e[i].next)
		if (!vis[e[i].to] && pos[e[i].to]==p) work(e[i].to);
}
int main() {
	while (1) {
		n=gi(),m=gi();
		if (!n && !m) break;
		Init();
		for (int x,y,i=1;i<=m;i++) {
			x=gi(),y=gi();
			f[x][y]=f[y][x]=1;
		}
		for (int i=1;i<=n;i++)
			for (int j=1;j<=n;j++) if (i!=j && !f[i][j]) link(i,j);
		for (int i=1;i<=n;i++) if (!dfn[i]) Tarjan(i,0);
		for (p=1;p<=num;p++) {
			for (int j=0;j<v[p].size();j++) pos[v[p][j]]=p;
			if (!dfs(v[p][0],p*2)) work(v[p][0]);
		}
		int ans=0;
		for (int i=1;i<=n;i++) if (!vis[i]) ans++;
		printf("%d\n",ans);
	}
    return 0;
}

  

时间: 2025-01-02 02:52:13

【poj2942】 Knights of the Round Table的相关文章

【POJ 2942】Knights of the Round Table(双联通分量+染色判奇环)

[POJ 2942]Knights of the Round Table(双联通分量+染色判奇环) Time Limit: 7000MS   Memory Limit: 65536K Total Submissions: 11661   Accepted: 3824 Description Being a knight is a very attractive career: searching for the Holy Grail, saving damsels in distress, an

【POJ】2942 Knights of the Round Table(双连通分量)

http://poj.org/problem?id=2942 各种逗.... 翻译白书上有:看了白书和网上的标程,学习了..orz. 强连通分量就是先找出割点,然后用个栈在找出割点前维护子树,最后如果这个是割点那么子树就都是强连通分量,然后本题求的是奇圈,那么就进行黑白染色,判断是否为奇圈即可.将不是奇圈的所有强连通分量的点累计起来即可. #include <cstdio> #include <cstring> #include <cmath> #include <

poj 2942 Knights of the Round Table 【双连通缩点+判奇圈】【经典】

题目:poj 2942 Knights of the Round Table 题意:n个骑士经常一起开会,其中有一些两两相互憎恨,他们不能同一桌,开会要表决一些事情,所以必须奇数个人,最少3个,求永远也参加不了会议的人的个数. 分析:这个题目两点 首先,建图求双连通缩点 建图的话,因为相互憎恨的不能再一块,所以要建补图,让能够在一起的所有的连接,这样的话,如果能存在环且环上的点是奇数个的话就可以参加会议,标记求不能参加的即可. 建好图之后用tarjan算法双连通缩点,把在一个环上的点保存起来.

POJ2942 Knights of the Round Table[点双连通分量|二分图染色|补图]

Knights of the Round Table Time Limit: 7000MS   Memory Limit: 65536K Total Submissions: 12439   Accepted: 4126 Description Being a knight is a very attractive career: searching for the Holy Grail, saving damsels in distress, and drinking with the oth

poj2924--F - Knights of the Round Table(圆桌骑士,经典连通分量)

F - Knights of the Round Table Time Limit:7000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Submit Status Description Being a knight is a very attractive career: searching for the Holy Grail, saving damsels in distress, and drinking w

POJ 2942 Knights of the Round Table 黑白着色+点双连通分量

题目来源:POJ 2942 Knights of the Round Table 题意:统计多个个骑士不能參加随意一场会议 每场会议必须至少三个人 排成一个圈 而且相邻的人不能有矛盾 题目给出若干个条件表示2个人直接有矛盾 思路:求补图  能够坐在一起 就是能够相邻的人建一条边 然后假设在一个奇圈上的都是满足的 那些不再不论什么一个奇圈的就是不满足 求出全部奇圈上的点 总数减去它就是答案 首先有2个定理 1.一个点双连通分量是二分图 你就没有奇圈 假设有奇圈  那就不是二分图  充分必要条件 所

【C#】Excel舍入函数Round、RoundUp、RoundDown的C#版

原文:[C#]Excel舍入函数Round.RoundUp.RoundDown的C#版 本人在C#中进行小数舍入的时候常常会怀念Excel中的Round.RoundUp.RoundDown这几个函数,原因就是后者“接地气”,比较符合俺小老百姓的舍入要求,啥“银行家舍入法”就让银行家用去吧.今儿有空,就把它实现了一下,先温习一下这几个Excel函数的功能: Round(value, digits) 将value按四舍五入法进行舍入,保留digits位小数:当digits为负时,在小数点左侧进行舍入

poj 2942 Knights of the Round Table - Tarjan

Being a knight is a very attractive career: searching for the Holy Grail, saving damsels in distress, and drinking with the other knights are fun things to do. Therefore, it is not very surprising that in recent years the kingdom of King Arthur has e

UvaLive3523 Knights of the Round Table(点双联通分量+二分图染色)

UvaLive3523 Knights of the Round Table 参考了Kuangbin巨的题解. /* POJ 2942 Knights of the Round Table 亚瑟王要在圆桌上召开骑士会议,为了不引发骑士之间的冲突, 并且能够让会议的议题有令人满意的结果,每次开会前都必须对出席会议的骑士有如下要求: 1. 相互憎恨的两个骑士不能坐在直接相邻的2个位置: 2. 出席会议的骑士数必须是奇数,这是为了让投票表决议题时都能有结果. 注意:1.所给出的憎恨关系一定是双向的,不