【POJ】3648 Wedding

http://poj.org/problem?id=3648

题意:n对人(编号0~n-1,‘w‘表示第一个人,‘h‘表示第二个人),每对两个,人坐在桌子两侧。满足:1、每对人中的两个人不能坐在同一侧。2、m对关系x和y,表示x和y不能坐在同一侧,但是能坐在第0对的第一个人的那一侧。问第0对的第一个人那一侧坐着的人。

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <iostream>
using namespace std;
const int N=1005;
int tot, FF[N], LL[N], p[N], in[N], num, all, top, ok[N], vis[N], pos[N], n, m;
struct Gr {
	int ihead[N], cnt;
	struct E{ int next, to; }e[N*N<<2];
	Gr() { cnt=0; memset(ihead, 0, sizeof ihead); }
	void add(int u, int v) { e[++cnt]=(E){ihead[u], v}; ihead[u]=cnt; }
	void tarjan(int x) {
		static int s[N];
		FF[x]=LL[x]=++tot; vis[x]=1; s[++top]=x;
		for(int i=ihead[x]; i; i=e[i].next)
			if(!FF[e[i].to]) tarjan(e[i].to), LL[x]=min(LL[x], LL[e[i].to]);
			else if(vis[e[i].to]) LL[x]=min(LL[x], FF[e[i].to]);
		if(FF[x]==LL[x]) {
			int y; ++num;
			do { y=s[top--]; vis[y]=0; p[y]=num; } while(x!=y);
		}
	}
	void tarjan() { tot=0; top=0; num=0; for(int i=0; i<all; ++i) if(!FF[i]) tarjan(i); }
	void rebuild(Gr &g) {
		for(int x=0; x<all; ++x)
			for(int i=ihead[x]; i; i=e[i].next) if(p[x]!=p[e[i].to])
				in[p[x]]++, g.add(p[e[i].to], p[x]);
		for(int x=0; x<all; x+=2) pos[p[x]]=p[x|1], pos[p[x|1]]=p[x];
	}
	void topo() {
		static int q[N], front, tail; front=tail=0;
		for(int i=0; i<num; ++i) if(!in[i]) q[tail++]=i;
		while(front!=tail) {
			int x=q[front++];
			if(!ok[x]) ok[x]=1, ok[pos[x]]=2;
			for(int i=ihead[x]; i; i=e[i].next) if(!(--in[e[i].to])) q[tail++]=e[i].to;
		}
	}
	void clr() {
		memset(ihead, 0, sizeof(int)*(all));
		cnt=0;
	}
}g, G;
void clr() {
	memset(FF, 0, sizeof(int)*(all));
	memset(in, 0, sizeof(int)*(all));
	memset(ok, 0, sizeof(int)*(all));
	memset(p, 0, sizeof(int)*(all));
	memset(pos, 0, sizeof(int)*(all));
	G.clr(); g.clr();
	all=0;
}
bool work() {
	all=n<<1;
	g.tarjan();
	for(int i=0; i<all; i+=2) if(p[i]==p[i+1]) return 0;
	g.rebuild(G);
	G.topo();
	int white=ok[p[0]]; // printf("%d\n", white);
	for(int i=1; i<n-1; ++i) printf("%d%c ", i, white==ok[p[i<<1]]?‘w‘:‘h‘);
	printf("%d%c\n", n-1, white==ok[p[(n-1)<<1]]?‘w‘:‘h‘);
	return 1;
}
int main() {
	while(scanf("%d%d", &n, &m), !(n==0&&m==0)) {
		for(int i=0; i<m; ++i) {
			static char s1, s2;
			int x, y;
			scanf("%d%c%d%c", &x, &s1, &y, &s2);
			int a=x<<1|(s1==‘h‘),
				b=y<<1|(s2==‘h‘);
			g.add(a, b^1); g.add(b, a^1);
		}
		g.add(0, 1);
		if(!work()) puts("bad luck");
		clr();
	}
	return 0;
}

  

一开始写的好几个都给wa了= =因为感觉整个题我写得都有问题,所以一怒之下我删了!然后看别人家的代码= =(但是后来发现本题有一个坑,就是读入的时候可能没有空格,因此不能读入"%s%s"= =,会不会这样就能a掉了呢= =)

这题我做得很郁闷= =各种不想说了..

大家请转移阵地(请结合三份题解一起看= =感觉各有缺漏= =)= =http://www.cnblogs.com/staginner/archive/2011/10/02/2198263.htmlhttp://www.cnblogs.com/kuangbin/archive/2012/10/05/2712429.htmlhttp://blog.csdn.net/qq172108805/article/details/7603351

(这里我不得不说一下= =状态设的是“对面”的人连边= =大家千万不要搞错了= =

时间: 2024-10-05 14:05:28

【POJ】3648 Wedding的相关文章

【POJ】2278 DNA Sequence

各种wa后,各种TLE.注意若AC非法,则ACT等一定非法.而且尽量少MOD. 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <queue> 5 using namespace std; 6 7 #define MAXN 105 8 #define NXTN 4 9 10 char str[15]; 11 12 typedef struct Matrix {

【POJ】1739 Tony&#39;s Tour

http://poj.org/problem?id=1739 题意:n×m的棋盘,'#'是障碍,'.'是空白,求左下角走到右下角且走过所有空白格子的方案数.(n,m<=8) #include <cstdio> #include <cstring> #include <algorithm> using namespace std; typedef long long ll; #define BIT(a,b) ((a)<<((b)<<1)) #

【POJ】2449 Remmarguts&#39; Date(k短路)

http://poj.org/problem?id=2449 不会.. 百度学习.. 恩. k短路不难理解的. 结合了a_star的思想.每动一次进行一次估价,然后找最小的(此时的最短路)然后累计到k 首先我们建反向边,跑一次从汇到源的最短路,将跑出来的最短路作为估价函数h 根据f=g+h 我们将源s先走,此时实际价值g为0,估价为最短路(他们的和就是s-t的最短路) 将所有s所连的边都做相同的处理,加入到堆中(假设此时到达的点为x,那么x的g等于s到这个点的边权,因为根据最优,g+h此时是从x

【POJ】2318 TOYS ——计算几何+二分

TOYS Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 10281   Accepted: 4924 Description Calculate the number of toys that land in each bin of a partitioned toy box. Mom and dad have a problem - their child John never puts his toys away w

【POJ】3009 Curling 2.0 ——DFS

Curling 2.0 Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 11432   Accepted: 4831 Description On Planet MM-21, after their Olympic games this year, curling is getting popular. But the rules are somewhat different from ours. The game is

【POJ】1056 IMMEDIATE DECODABILITY

字典树水题. 1 #include <cstdio> 2 #include <cstring> 3 #include <cstdlib> 4 5 typedef struct Trie { 6 bool v; 7 Trie *next[2]; 8 } Trie; 9 10 Trie *root; 11 12 bool create(char str[]) { 13 int i = 0, id; 14 bool ret = false; 15 Trie *p = root

【POJ】2418 Hardwood Species

简单字典树. 1 #include <cstdio> 2 #include <cstring> 3 #include <cstdlib> 4 5 #define MAXN 128 6 7 typedef struct Trie { 8 int count; 9 Trie *next[MAXN]; 10 Trie() { 11 count = 0; 12 for (int i=0; i<MAXN; ++i) 13 next[i] = NULL; 14 } 15 }

【POJ】2513 Colored Sticks

字典树+并查集. 1 #include <cstdio> 2 #include <cstring> 3 #include <cstdlib> 4 5 #define MAXN 500005 6 #define MAXL 11 7 #define TRIEN 26 8 9 typedef struct Trie { 10 int v; 11 Trie *next[TRIEN]; 12 Trie() { 13 v = 0; 14 for (int i=0; i<TRI

【POJ】 2528 - Mayor&#39;s posters 【线段树+离散化】

题目: Mayor's posters Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 47228   Accepted: 13719 Description The citizens of Bytetown, AB, could not stand that the candidates in the mayoral election campaign have been placing their electoral