记录编号 |
584176 |
评测结果 |
AAAAAAAAAAAAAA |
题目名称 |
[POI 2001] 和平委员会 |
最终得分 |
100 |
用户昵称 |
┭┮﹏┭┮ |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.082 s |
提交时间 |
2023-11-01 21:23:22 |
内存使用 |
3.90 MiB |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
const int N = 2e4+10,M = 1e5+10;
//tarjan + 2-SAT
int n,m;
struct made{
int ver,nx;
}e[M];
int hd[N],tot,cnt,top,num;
int low[N],dfn[N],st[N],c[N];
bool v[N];
void add(int x,int y){
tot++;
e[tot].ver = y,e[tot].nx = hd[x],hd[x] = tot;
}
void tarjan(int x){
low[x] = dfn[x] = ++cnt;
st[++top] = x,v[x] = 1;
for(int i = hd[x];i;i = e[i].nx){
int y = e[i].ver;
if(!dfn[y])tarjan(y),low[x] = min(low[x],low[y]);
else if(v[y])low[x] = min(low[x],dfn[y]);
}
if(low[x] == dfn[x]){
num++;int y = 0;
do{
y = st[top--];
v[y] = 0,c[y] = num;
}while(x != y);
}
}
int f(int x){
return (x % 2 == 0?x-1:x+1);
}//
int main(){
freopen("spo.in","r",stdin);
freopen("spo.out","w",stdout);
scanf("%d%d",&n,&m);
for(int i = 1;i <= m;i++){
int x,y;scanf("%d%d",&x,&y);
add(x,f(y));add(y,f(x));
}
for(int i = 1;i <= 2*n;i++)
if(!dfn[i])tarjan(i);
for(int i = 1;i <= 2*n;i+=2){
if(c[i] == c[i+1]){
printf("NIE\n");
return 0;
}
}
for(int i = 1;i <= 2*n;i+=2){
if(c[i] < c[i+1])printf("%d\n",i);
else printf("%d\n",i+1);
}//
return 0;
}