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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
#include<iostream> #include<cstdio> #include<cstring> #include<vector> using namespace std; long long read() { long long x=0,f=1; char c=getchar(); while(!isdigit(c)){if(c=='-') f=-1;c=getchar();} while(isdigit(c)){x=x*10+c-'0';c=getchar();} return x*f; } const int N=100000+100; const int M=N*4; int ans[N]; struct UnF { int size[N],fa[N],mstack[M],top; void Init(int n) { for(int i=1;i<=n;i++) size[i]=1; } int FindFather(int x) { if(fa[x]==0) return x; return FindFather(fa[x]); } void Link(int x,int y) { mstack[++top]=0; int fa_x=FindFather(x),fa_y=FindFather(y); if(size[fa_x]>size[fa_y]) swap(x,y),swap(fa_x,fa_y); if(fa_x==fa_y) return; mstack[top]=fa_x; fa[fa_x]=fa_y,size[fa_y]+=size[fa_x]; } int Query(int x,int y) { if(FindFather(x)==FindFather(y)) return true; return false; } void Undo() { if(mstack[top]==0) { top--; return; } size[fa[mstack[top]]]-=size[mstack[top]]; fa[mstack[top]]=0; top--; } }unf; struct OP { int s,t,id; }op[N],op2[M*20],e[M]; struct SegmentTree { #define mid ((now_l+now_r)>>1) #define lson (now<<1) #define rson (now<<11) vector <int> w[N<<2]; void Insert(int l,int r,int x,int now,int now_l,int now_r) { if(now_l>=l and now_r<=r) { w[now].push_back(x); return; } if(l<=mid) Insert(l,r,x,lson,now_l,mid); if(r>mid) Insert(l,r,x,rson,mid+1,now_r); } void dfs(int now,int now_l,int now_r) { if(now_l>now_r) return; for(int i=0;i<int(w[now].size());i++) unf.Link(e[w[now][i]].s,e[w[now][i]].t); if(now_l==now_r) ans[now_l]=unf.Query(op[now_l].s,op[now_l].t); else { dfs(lson,now_l,mid); dfs(rson,mid+1,now_r); } for(int i=0;i<int(w[now].size());i++) unf.Undo(); } #undef mid #undef lson #undef rson }sgt; int last[M],n,q,p; bool w[3][N][3]; inline int GetID(int x,int y,int type) { return ((y-1)*n+x-1)*3+type; } inline int GetID2(int x,int y) { return (y-1)*n+x; } int main() { freopen("4246.in","r",stdin); freopen("4246.out","w",stdout);
n=read(); char OP[10]; while(1) { scanf("%s",OP+1); if(OP[1]=='E') break; else if(OP[1]=='O' or OP[1]=='C') { int y1=read(),x1=read(),y2=read(),x2=read(),type=1; if(OP[1]=='C') type=0; if(x1>x2) swap(x1,x2),swap(y1,y2); if(y1>y2) swap(x1,x2),swap(y1,y2); if(x2==x1+1) { if(w[y1][x1][0]==type) continue; w[y1][x1][0]=type; type=0; } else { if(w[y1][x1][2]==type) continue; w[y1][x1][2]=w[y2][x2][1]=type; type=2; }
if(OP[1]=='O') last[GetID(x1,y1,type)]=q+1; else { op2[++p].s=last[GetID(x1,y1,type)],op2[p].t=q,op2[p].id=GetID(x1,y1,type); last[GetID(x1,y1,type)]=0; } } else { int y1=read(),x1=read(),y2=read(),x2=read(); op[++q].s=GetID2(x1,y1),op[q].t=GetID2(x2,y2); } } for(int i=0;i<=6*n+100;i++) if(last[i]!=0) op2[++p].s=last[i],op2[p].t=q,op2[p].id=i;
for(int i=1;i<=2;i++) for(int j=1;j<=n;j++) for(int k=0;k<=2;k++) { e[GetID(j,i,k)].s=GetID2(j,i); if(k==0) e[GetID(j,i,k)].t=GetID2(j+1,i); if(k==2) e[GetID(j,i,k)].t=GetID2(j,i+1); } unf.Init(n*2+1); for(int i=1;i<=p;i++) if(op2[i].s<=op2[i].t) { sgt.Insert(op2[i].s,op2[i].t,op2[i].id,1,1,q); cerr<<op2[i].s<<" "<<op2[i].t<<" "<<op2[i].id<<endl; }
sgt.dfs(1,1,q);
for(int i=1;i<=q;i++) if(ans[i]==0) printf("N\n"); else printf("Y\n"); return 0; }
|