結果
問題 | No.2292 Interval Union Find |
ユーザー | lgswdn |
提出日時 | 2023-05-08 16:04:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 371 ms / 5,000 ms |
コード長 | 2,416 bytes |
コンパイル時間 | 2,047 ms |
コンパイル使用メモリ | 200,988 KB |
実行使用メモリ | 122,496 KB |
最終ジャッジ日時 | 2024-11-25 07:39:13 |
合計ジャッジ時間 | 16,928 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 90 ms
6,528 KB |
testcase_05 | AC | 89 ms
6,784 KB |
testcase_06 | AC | 91 ms
6,528 KB |
testcase_07 | AC | 98 ms
6,820 KB |
testcase_08 | AC | 351 ms
74,724 KB |
testcase_09 | AC | 324 ms
74,532 KB |
testcase_10 | AC | 331 ms
73,472 KB |
testcase_11 | AC | 313 ms
71,552 KB |
testcase_12 | AC | 339 ms
74,880 KB |
testcase_13 | AC | 255 ms
58,752 KB |
testcase_14 | AC | 299 ms
66,816 KB |
testcase_15 | AC | 316 ms
70,144 KB |
testcase_16 | AC | 298 ms
64,768 KB |
testcase_17 | AC | 331 ms
74,624 KB |
testcase_18 | AC | 138 ms
62,976 KB |
testcase_19 | AC | 364 ms
122,368 KB |
testcase_20 | AC | 371 ms
122,496 KB |
testcase_21 | AC | 326 ms
101,120 KB |
testcase_22 | AC | 323 ms
100,992 KB |
testcase_23 | AC | 324 ms
101,248 KB |
testcase_24 | AC | 329 ms
101,248 KB |
testcase_25 | AC | 336 ms
101,248 KB |
testcase_26 | AC | 316 ms
100,992 KB |
testcase_27 | AC | 312 ms
101,248 KB |
testcase_28 | AC | 314 ms
101,120 KB |
testcase_29 | AC | 322 ms
101,248 KB |
testcase_30 | AC | 311 ms
101,248 KB |
testcase_31 | AC | 317 ms
101,120 KB |
testcase_32 | AC | 309 ms
101,248 KB |
testcase_33 | AC | 307 ms
101,120 KB |
testcase_34 | AC | 321 ms
101,376 KB |
testcase_35 | AC | 325 ms
101,248 KB |
testcase_36 | AC | 323 ms
101,120 KB |
testcase_37 | AC | 312 ms
101,248 KB |
testcase_38 | AC | 310 ms
101,248 KB |
testcase_39 | AC | 318 ms
101,248 KB |
testcase_40 | AC | 320 ms
101,248 KB |
testcase_41 | AC | 19 ms
5,248 KB |
testcase_42 | AC | 21 ms
5,248 KB |
testcase_43 | AC | 27 ms
5,248 KB |
testcase_44 | AC | 48 ms
5,248 KB |
testcase_45 | AC | 51 ms
5,248 KB |
testcase_46 | AC | 54 ms
5,248 KB |
testcase_47 | AC | 67 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=4e5+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; }