結果
問題 | No.2292 Interval Union Find |
ユーザー | lgswdn |
提出日時 | 2023-05-08 16:04:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,416 bytes |
コンパイル時間 | 2,108 ms |
コンパイル使用メモリ | 200,688 KB |
実行使用メモリ | 103,424 KB |
最終ジャッジ日時 | 2024-11-25 07:38:43 |
合計ジャッジ時間 | 21,905 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 91 ms
6,400 KB |
testcase_05 | AC | 91 ms
7,040 KB |
testcase_06 | AC | 108 ms
6,528 KB |
testcase_07 | AC | 99 ms
6,528 KB |
testcase_08 | AC | 372 ms
75,016 KB |
testcase_09 | AC | 363 ms
74,624 KB |
testcase_10 | AC | 346 ms
73,472 KB |
testcase_11 | AC | 342 ms
71,680 KB |
testcase_12 | AC | 355 ms
74,880 KB |
testcase_13 | AC | 291 ms
58,880 KB |
testcase_14 | AC | 315 ms
66,944 KB |
testcase_15 | AC | 347 ms
70,144 KB |
testcase_16 | AC | 314 ms
64,896 KB |
testcase_17 | AC | 364 ms
74,624 KB |
testcase_18 | AC | 143 ms
63,232 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | AC | 347 ms
101,120 KB |
testcase_22 | AC | 367 ms
101,248 KB |
testcase_23 | AC | 357 ms
101,224 KB |
testcase_24 | AC | 353 ms
101,376 KB |
testcase_25 | AC | 374 ms
101,376 KB |
testcase_26 | AC | 365 ms
101,248 KB |
testcase_27 | AC | 351 ms
101,212 KB |
testcase_28 | AC | 352 ms
101,164 KB |
testcase_29 | AC | 350 ms
101,248 KB |
testcase_30 | AC | 351 ms
101,376 KB |
testcase_31 | AC | 355 ms
101,084 KB |
testcase_32 | AC | 350 ms
101,248 KB |
testcase_33 | AC | 347 ms
101,376 KB |
testcase_34 | AC | 347 ms
101,376 KB |
testcase_35 | AC | 343 ms
101,376 KB |
testcase_36 | AC | 349 ms
101,248 KB |
testcase_37 | AC | 355 ms
101,228 KB |
testcase_38 | AC | 345 ms
101,504 KB |
testcase_39 | AC | 335 ms
101,036 KB |
testcase_40 | AC | 347 ms
101,360 KB |
testcase_41 | AC | 20 ms
5,248 KB |
testcase_42 | AC | 23 ms
5,248 KB |
testcase_43 | AC | 28 ms
5,248 KB |
testcase_44 | AC | 53 ms
5,248 KB |
testcase_45 | AC | 55 ms
5,248 KB |
testcase_46 | AC | 58 ms
5,248 KB |
testcase_47 | AC | 73 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> #define rep(i,a,b) for(int i=(a);i<=(b);i++) #define per(i,a,b) for(int i=(a);i>=(b);i--) #define fi first #define se second #define eb emplace_back #define popc __builtin_popcount using namespace std; typedef long long ll; typedef pair<int,int> pii; typedef vector<int> vi; typedef vector<pii> vp; typedef unsigned long long ull; typedef long double ld; int read() { int x=0,w=1; char c=getchar(); while(!isdigit(c)) {if(c=='-') w=-1; c=getchar();} while(isdigit(c)) {x=x*10+(c-'0'); c=getchar();} return x*w; } const int N=2e5+9,lim=1e9; int n,m; namespace SegT { int ls[N<<5],rs[N<<5],tag[N<<5],s[N<<5],tot=1; void set(int p,int l,int r,int t) { if(t==0) s[p]=0, tag[p]=0; else if(t==1) s[p]=r-l+1, tag[p]=1; } void psd(int p,int l,int r) { int mid=l+r>>1; if(!ls[p]) ls[p]=++tot; tag[ls[p]]=tag[p], set(ls[p],l,mid,tag[p]); if(!rs[p]) rs[p]=++tot; tag[rs[p]]=tag[p], set(rs[p],mid+1,r,tag[p]); tag[p]=-1; } void cov(int p,int l,int r,int x,int y,int t) { if(l==x&&r==y) {set(p,l,r,t); return;} int mid=l+r>>1; if(tag[p]!=-1) psd(p,l,r); if(y<=mid) cov(ls[p],l,mid,x,y,t); else if(x>mid) cov(rs[p],mid+1,r,x,y,t); else cov(ls[p],l,mid,x,mid,t), cov(rs[p],mid+1,r,mid+1,y,t); s[p]=s[ls[p]]+s[rs[p]]; } int ql(int p,int l,int r,int x) { //max pos0 <=x if(s[p]==r-l+1) return -1; if(s[p]==0) return x; int mid=l+r>>1; if(tag[p]!=-1) psd(p,l,r); if(x<=mid) return ql(ls[p],l,mid,x); else { int res=ql(rs[p],mid+1,r,x); return res>=0?res:ql(ls[p],l,mid,mid); } } int qr(int p,int l,int r,int x) { //min pos0 >=x if(s[p]==r-l+1) return n+1; if(s[p]==0) return x; int mid=l+r>>1; if(tag[p]!=-1) psd(p,l,r); if(x>mid) return qr(rs[p],mid+1,r,x); else { int res=qr(ls[p],l,mid,x); return res<=n?res:qr(rs[p],mid+1,r,mid+1); } } } signed main() { n=read(), m=read(); while(m--) { int opt=read(); if(opt==1) { int l=read(), r=read(); SegT::cov(1,0,n,l,r-1,1); } else if(opt==2) { int l=read(), r=read(); SegT::cov(1,0,n,l,r-1,0); } else if(opt==3) { int x=read(), y=read(); if(x>y) swap(x,y); int rp=SegT::qr(1,0,n,x); printf("%d\n",rp>=y); } else { int x=read(); int lp=SegT::ql(1,0,n,x-1), rp=SegT::qr(1,0,n,x); printf("%d\n",rp-lp); } } return 0; }