QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#603964 | #9170. Cycle Game | peter | ML | 1166ms | 227328kb | C++14 | 3.9kb | 2024-10-01 21:20:59 | 2024-10-01 21:21:00 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> pii;
const int maxn=3e5+5;
const int maxm=6e6+5;
int dx[]={-1,-1,-1,0,0,1,1,1},dy[]={-1,0,1,-1,1,-1,0,1};
int fa[maxm],sz[maxm],n,m,q;
vector<pii> tr[maxn<<2];
map<pii,int> mp;
int st[maxm],top=0;
pii que[maxn];
int find(int x){
if(fa[x]==x) return x;
return find(fa[x]);
}
void merge(int x,int y){
x=find(x);
y=find(y);
if(x==y) return;
if(sz[x]>sz[y]) swap(x,y);
fa[x]=y;
sz[y]+=sz[x];
// assert(top<maxm-1);
st[++top]=x;
}
void del(int lst){
while(top>lst){
int x=st[top];
top--;
sz[fa[x]]-=sz[x];
fa[x]=x;
}
}
int getid(int x,int y){
return x*(m+2)+y;
}
bool bk[maxm];
void update(int now,int l,int r,int ql,int qr,pii x){
if(ql>qr) return;
// assert(now<(maxn<<2));
if(ql<=l&&qr>=r){
tr[now].push_back(x);
return;
}
int mid=(l+r)>>1;
if(ql<=mid) update(now<<1,l,mid,ql,qr,x);
if(qr>mid) update(now<<1|1,mid+1,r,ql,qr,x);
}
void dfs(int now,int l,int r){
int lst=top;
for(pii x : tr[now]) merge(x.first,x.second);
// printf("kk%d %d %d\n",now,l,r);
int st=tr[now].size();
if(l==r){
int x=que[l].first,y=que[l].second,tt=-1;
bool flag=0;
for(int j=0;j<8;j++){
int nx=x+dx[j],ny=y+dy[j];
if(!bk[getid(nx,ny)]){
if(tt==-1) tt=find(getid(nx,ny));
else if(tt!=find(getid(nx,ny))){
// if(l==47) printf("\n%d %d\n",nx,ny);
flag=1;
break;
}
}else{
int ppt=top;
for(int t=0;t<8;t++){
int xx=nx+dx[t],yy=ny+dy[t];
if(xx<0||xx>n+1||yy<0||yy>m+1) continue;
if(bk[getid(xx,yy)]||(xx==x&&yy==y)) continue;
merge(getid(nx,ny),getid(xx,yy));
}
int ttt=-1;
for(int t=0;t<8;t++){
int xx=x+dx[t],yy=y+dy[t];
if((!bk[getid(xx,yy)])||(xx==nx&&yy==ny)){
if(ttt==-1) ttt=find(getid(xx,yy));
else if(ttt!=find(getid(xx,yy))){
// if(l==47) printf("\n%d %d %d %d\n",nx,ny,xx,yy);
flag=1;
break;
}
}
}
del(ppt);
if(flag) break;
}
}
if(flag){
for(int j=0;j<8;j++){
int nx=x+dx[j],ny=y+dy[j];
pii tmp=make_pair(getid(x,y),getid(nx,ny));
if(bk[getid(nx,ny)]) continue;
if(mp[tmp]==l){
// if(l==45) printf("\n%d %d : %d %d %d %d\n",l,q,x,y,nx,ny);
update(1,1,q,l+1,q,tmp);
}else{
// if(l==45) printf("\n%d %d : %d %d\n",l,mp[tmp]-1,tmp.first,tmp.second);
update(1,1,q,l+1,mp[tmp]-1,tmp);
}
}
// printf("%d : 0\n",l);
putchar('0');
}else{
bk[getid(x,y)]=1;
// printf("%d : 1\n",l);
putchar('1');
}
del(lst);
return;
}
int mid=(l+r)>>1;
dfs(now<<1,l,mid);
for(int j=st;j<(int)tr[now].size();j++){
pii x=tr[now][j];
merge(x.first,x.second);
}
dfs(now<<1|1,mid+1,r);
del(lst);
}
int main(){
// freopen("data.txt","r",stdin);
mp.clear();
scanf("%d %d %d",&n,&m,&q);
for(int i=1;i<=q;i++){
int x,y;
scanf("%d %d",&x,&y);
// if(x==9&&y==8) printf("%d : %d %d\n",i,x,y);
for(int j=0;j<8;j++){
int nx=x+dx[j],ny=y+dy[j];
pii t1=make_pair(getid(x,y),getid(nx,ny)),t2=make_pair(getid(nx,ny),getid(x,y));
if(mp.find(t1)==mp.end()) update(1,1,q,1,i-1,t1);
mp[t1]=mp[t2]=i;
}
bk[getid(x,y)]=1;
que[i]=make_pair(x,y);
}
// assert(getid(n+1,m+1)<maxm);
// for(int i=0;i<=n+1;i++){
// for(int j=0;j<=m+1;j++) printf("%d %d : %d\n",i,j,getid(i,j));
// }
for(int i=0;i<=(n+2)*(m+2);i++){
fa[i]=i;
sz[i]=1;
}
for(int x=0;x<=n+1;x++){
for(int y=0;y<=m+1;y++){
for(int k=0;k<8;k++){
int nx=x+dx[k],ny=y+dy[k];
if(nx<0||nx>n+1||ny<0||ny>m+1) continue;
if(bk[getid(x,y)]||bk[getid(nx,ny)]) continue;
// printf("%d %d - %d %d\n",x,y,nx,ny);
merge(getid(x,y),getid(nx,ny));
}
}
}
// for(int i=1;i<=49;i++) printf("%d %d\n",que[i].first,que[i].second);
for(int i=1;i<=q;i++) bk[getid(que[i].first,que[i].second)]=0;
dfs(1,1,q);
puts("");
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 5ms
memory: 36432kb
input:
4 3 7 2 1 2 2 2 3 3 1 3 2 4 1 4 2
output:
1111111
result:
ok "1111111"
Test #2:
score: 0
Accepted
time: 8ms
memory: 38580kb
input:
3 3 8 1 1 1 2 1 3 2 3 3 3 3 2 3 1 2 1
output:
11111110
result:
ok "11111110"
Test #3:
score: 0
Accepted
time: 0ms
memory: 36444kb
input:
10 10 7 9 1 6 6 3 8 8 7 5 10 1 7 1 2
output:
1111111
result:
ok "1111111"
Test #4:
score: 0
Accepted
time: 6ms
memory: 36520kb
input:
9 10 50 1 9 1 6 2 3 3 1 7 4 9 4 1 3 2 5 9 2 7 9 5 6 8 10 9 5 5 5 4 10 9 7 5 9 3 2 4 5 1 1 4 7 3 6 2 8 4 3 8 6 5 10 4 8 5 4 7 2 9 6 4 2 7 8 5 2 3 5 9 1 6 1 1 5 9 9 5 8 6 3 8 8 8 4 7 7 7 1 3 7 2 2 3 10 6 9 8 3 7 6
output:
11111111111111111111111111111111111111111111111111
result:
ok "11111111111111111111111111111111111111111111111111"
Test #5:
score: 0
Accepted
time: 0ms
memory: 36480kb
input:
3 5 11 1 5 2 4 1 2 1 3 3 3 3 1 3 4 2 3 1 4 2 1 2 5
output:
11111111111
result:
ok "11111111111"
Test #6:
score: 0
Accepted
time: 3ms
memory: 36540kb
input:
7 9 12 7 3 2 3 6 2 2 2 4 2 2 8 5 7 4 4 6 8 2 7 7 2 1 9
output:
111111111111
result:
ok "111111111111"
Test #7:
score: 0
Accepted
time: 0ms
memory: 36508kb
input:
1 4 1 1 2
output:
1
result:
ok "1"
Test #8:
score: 0
Accepted
time: 6ms
memory: 38532kb
input:
9 8 67 5 5 8 3 9 5 7 4 5 1 9 3 4 2 2 5 1 7 7 8 7 2 8 5 6 1 8 8 4 4 5 4 1 5 3 4 6 7 2 3 3 7 5 7 2 4 2 7 1 3 7 3 2 8 6 6 6 2 6 3 7 5 9 6 7 6 3 6 1 1 6 4 3 1 5 3 8 7 2 1 4 1 8 4 8 6 3 5 5 8 1 6 1 2 4 6 9 4 1 4 3 3 4 8 8 1 4 7 9 8 3 8 6 5 6 8 3 2 2 2 7 1 9 2 4 3 1 8 4 5 8 2 7 7
output:
1111111111111111111111111111111111111111111110010101101000101101101
result:
ok "111111111111111111111111111111...1111111110010101101000101101101"
Test #9:
score: 0
Accepted
time: 5ms
memory: 36580kb
input:
3 10 3 3 9 2 5 2 7
output:
111
result:
ok "111"
Test #10:
score: 0
Accepted
time: 141ms
memory: 81856kb
input:
222212 1 21562 105762 1 167947 1 127551 1 117618 1 174844 1 139867 1 156729 1 30554 1 54488 1 151832 1 132914 1 109432 1 212091 1 136499 1 17818 1 48806 1 95752 1 66607 1 39930 1 23054 1 160823 1 169054 1 96680 1 150677 1 52895 1 93103 1 118079 1 79155 1 194811 1 141874 1 138763 1 2600 1 121471 1 17...
output:
111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...
result:
ok "111111111111111111111111111111...1111111111111111111111111111111"
Test #11:
score: 0
Accepted
time: 1166ms
memory: 227328kb
input:
1 167058 126088 1 15282 1 63796 1 77270 1 88793 1 42787 1 129851 1 34468 1 74525 1 121105 1 157182 1 92736 1 102044 1 11284 1 23439 1 142720 1 128610 1 27437 1 105575 1 130827 1 152824 1 76358 1 152954 1 65509 1 139802 1 66299 1 108943 1 140446 1 112411 1 95814 1 115750 1 9667 1 55383 1 89323 1 6734...
output:
111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...
result:
ok "111111111111111111111111111111...1111111111111111111111111111111"
Test #12:
score: 0
Accepted
time: 884ms
memory: 135172kb
input:
9 12788 86384 4 11931 2 8183 1 5816 7 10320 8 5754 4 10778 4 12280 7 12746 1 4699 3 7876 4 3044 2 4903 9 10252 8 10512 7 6546 8 1338 5 9700 1 9833 6 11315 2 4067 7 9350 9 8200 2 1718 1 2542 2 4596 9 367 5 12426 1 12166 5 7652 4 2316 9 1946 3 6187 4 3306 1 63 8 4132 3 12491 2 3951 8 4169 7 11801 9 46...
output:
111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...
result:
ok "111111111111111111111111111111...0010111100011000000100110101100"
Test #13:
score: 0
Accepted
time: 9ms
memory: 38412kb
input:
10 6 58 7 3 1 5 9 2 10 4 1 2 1 6 9 6 5 4 8 2 9 3 5 1 4 5 7 4 10 1 10 3 5 3 4 3 6 5 1 4 7 2 10 6 8 3 5 6 9 4 2 2 1 1 6 4 3 5 3 2 6 2 3 6 8 1 8 4 8 5 7 5 6 1 4 4 3 4 3 1 7 1 4 1 2 4 6 6 9 5 7 6 2 1 5 5 10 2 2 5 4 2 2 6 10 5 9 1 4 6 5 2 6 3 1 3 8 6
output:
1111111111111111111111111111111101111111111011011001000000
result:
ok "1111111111111111111111111111111101111111111011011001000000"
Test #14:
score: 0
Accepted
time: 36ms
memory: 43752kb
input:
23660 2 4698 10158 1 1229 1 51 2 10559 2 15495 2 19343 1 18458 1 19633 2 23151 1 11738 2 21366 1 12968 2 10474 1 10552 2 8067 2 7125 2 14643 1 7579 2 21608 2 7067 2 20400 1 14397 2 21474 2 8294 2 1332 1 18105 1 2285 1 1223 1 13429 2 18580 2 11156 2 5498 1 6830 1 8848 2 21334 2 11946 1 10177 1 5349 1...
output:
111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...
result:
ok "111111111111111111111111111111...1111111111111111111111111111111"
Test #15:
score: 0
Accepted
time: 286ms
memory: 69520kb
input:
51 732 29706 14 458 6 600 18 452 43 262 24 685 51 192 14 248 50 672 16 65 45 191 25 196 1 447 4 574 32 493 16 100 39 715 17 397 37 644 32 580 32 622 22 160 20 694 29 120 30 302 7 283 18 290 51 420 20 553 42 681 11 724 26 528 50 497 46 500 3 534 36 58 42 167 18 534 1 654 50 276 37 386 19 649 14 41 8 ...
output:
111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...
result:
ok "111111111111111111111111111111...0100001111101110110110000010000"
Test #16:
score: -100
Memory Limit Exceeded
input:
75000 4 225000 71753 3 13211 2 61737 3 59039 3 3674 3 50461 4 12758 3 69966 1 57525 1 42178 1 15054 1 66939 2 2798 4 74983 2 7250 2 2247 4 11438 1 67858 4 66527 2 21625 2 14111 2 28737 1 7431 4 11317 3 47421 2 51295 4 39591 4 20811 3 51582 3 47874 2 3238 2 10987 3 1225 1 58741 4 2141 3 35454 4 5021 ...
output:
111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...