BZOJ 2199: [Usaco2011 Jan]奶牛议会 [2-SAT 判断解]

时间:2021-04-13 00:40:07

http://www.lydsy.com/JudgeOnline/problem.php?id=2199

题意:裸的2-SAT,但是问每个变量在所有解中是只能为真还是只能为假还是既可以为真又可以为假


这样的话求$SCC$的做法就不好做了

于是只能用$naive$做法了,枚举每个变量选择真假然后$dfs$一遍看看是否可行

点从2开始,然后就可以愉快的异或啦

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
using namespace std;
const int N=,M=2e5+;
typedef long long ll;
inline int read(){
char c=getchar();int x=,f=;
while(c<''||c>''){if(c=='-')f=-;c=getchar();}
while(c>=''&&c<=''){x=x*+c-'';c=getchar();}
return x*f;
}
inline void get(int &x,char &c){
c=getchar();
while(c!='h'&&c!='m') c=getchar();
x=read()<<;
}
int n,m,x,y,vx,vy;
char s[];
struct edge{
int v,ne;
}e[M];
int h[N],cnt=;
inline void ins(int u,int v){
cnt++;
e[cnt].v=v;e[cnt].ne=h[u];h[u]=cnt;
}
bool mark[N];
bool dfs(int u){
if(mark[u^]) return false;
if(mark[u]) return true;
mark[u]=;
for(int i=h[u];i;i=e[i].ne)
if(!dfs(e[i].v)) return false;
return true;
}
bool check(int u){
memset(mark,,sizeof(mark));
return dfs(u);
}
char ans[N];
int main(){
freopen("in","r",stdin);
n=read();m=read();
for(int i=;i<=m;i++){
x=read()<<;scanf("%s",s);vx=s[]=='Y';
y=read()<<;scanf("%s",s);vy=s[]=='Y';
x|=vx;y|=vy;
ins(x^,y);ins(y^,x);
}
for(int i=;i<=n;i++){
int p=check(i<<),q=check(i<<|);
if(!p&&!q){puts("IMPOSSIBLE");return ;}
else if(p&&q) ans[i]='?';
else if(q) ans[i]='Y';
else ans[i]='N';
}
for(int i=;i<=n;i++) putchar(ans[i]);
}