「CF468B」Two Sets
为什么你们都会做。。。
我的思路完全偏了。。。
可以先确定一个数在某个集合,然后可以确定一系列和它相关的数所在集合,看是否矛盾
具体用dfs来搞
一个点最多被搜2次
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
#include<iostream> #include<cstdio> #include<cstring> #include<cstdlib> #include<algorithm> #include<cmath> #include<set> #include<map> #define inf 2147483647 using namespace std; inline int read() { 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; } int A=0,B=1; int n,a,b,p[100005],ans[100005]; map<int,int> mp; bool dfs(int x,int f) { if(!mp.count(a-p[x])&&!mp.count(b-p[x]))return 0; if(!mp.count(a-p[x])&&mp.count(b-p[x])) { ans[x]=B; int pos=mp[b-p[x]]; if(ans[f]==A)return 0; else return f||dfs(pos,x); } else if(mp.count(a-p[x])&&!mp.count(b-p[x])) { ans[x]=A; int pos=mp[a-p[x]]; if(ans[f]==B)return 0; else return f||dfs(pos,x); } else { int pos1=mp[a-p[x]],pos2=mp[b-p[x]]; if(pos1==f) { ans[x]=ans[f]; return dfs(pos2,x); } if(pos2==f) { ans[x]=ans[f]; return dfs(pos1,x); } ans[x]=A; bool flag=dfs(pos1,x)&&dfs(pos2,x); if(!flag) { ans[x]=B; flag=dfs(pos1,x)&&dfs(pos2,x); if(!flag) return 0; } return 1; } return 1; } void work() { for(int i=1;i<=n;++i) if(ans[i]==-1) if(!dfs(i,0)) {puts("NO");return;} puts("YES"); for(int i=1;i<=n;++i) printf("%d ",ans[i]); printf("\n"); } int main() { n=read();a=read();b=read(); if(a==b)b=inf; for(int i=1;i<=n;++i) { p[i]=read(); mp[p[i]]=i; } memset(ans,-1,sizeof(ans)); work(); return 0; } |
Subscribe