POJ3648
解读题意
1.夫妻不同侧(新娘和新郎必须分开坐)
2.通奸可以同时在新娘一侧
3.通奸不可以同时在新郎一侧
转化建图
1.夫妻不同侧,则可以定义:
i×2 (h)坐左边 ; i×2+1 (w)坐左边
2.由于通奸可以和新娘在一侧,所以有关新娘的关系可以跳过
a=a*2+(c1=='w'),b=b*2+(c2=='w');
if(a==1||b==1)continue;
3.如果通奸关系有一人走在新郎一侧,另一个必须在新娘一侧
但是又无法确定新郎在那一侧,但是新郎和新娘到底在那侧对结果是没有影响的,因此可以强制新郎在左边
vis[0]=1;
add_edge(a,b^1);
add_edge(b,a^1);
具体代码
#include<cstdio>
#include<algorithm>
using namespace std;
//夫妻不同侧 i一真一假
//通奸不同侧 a,b^1 b,a^1 a^1,b b^1,a
//i*2 h坐左边 i*2+1 w坐左边
const int M=200;
int n,m;
int asdf,head[M];
struct edge {
int to,nxt;
} G[M*50];
void add_edge(int a,int b) {
G[++asdf].to=b;
G[asdf].nxt=head[a];
head[a]=asdf;
}
bool mark[M],vis[M];
int stk[M],top;
bool dfs(int x) {
if(mark[x^1]||vis[x^1])return 0;
if(mark[x])return 1;
mark[x]=1;
stk[++top]=x;
for(int i=head[x]; i; i=G[i].nxt) {
if(!dfs(G[i].to))return 0;
}
return 1;
}
bool check() {
for(int i=0; i<2*n; i+=2) {
if(!mark[i]&&!mark[i+1]) {
top=0;
if(!dfs(i)) {
while(top)mark[stk[top--]]=0;
if(!dfs(i+1))return 0;
}
}
}
return 1;
}
int main() {
int a,b;
char c1,c2;
while(scanf("%d %d",&n,&m),n||m) {
asdf=0;
for(int i=0; i<2*n; i++) {
head[i]=mark[i]=vis[i]=0;
}
vis[0]=1;
for(int i=1; i<=m; i++) {
scanf("%d%c %d%c",&a,&c1,&b,&c2);
a=a*2+(c1=='w'),b=b*2+(c2=='w');
if(a==1||b==1)continue;
add_edge(a,b^1);
add_edge(b,a^1);
}
if(!check()) {
printf("bad luck\n");
} else {
for(int i=2; i<2*n; i+=2) {
printf("%d%c ",i/2,mark[i]?'w':'h');
}
printf("\n");
}
}
return 0;
}