結果
問題 | No.2292 Interval Union Find |
ユーザー | cyk203 |
提出日時 | 2023-05-05 22:14:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 386 ms / 5,000 ms |
コード長 | 4,700 bytes |
コンパイル時間 | 1,798 ms |
コンパイル使用メモリ | 179,720 KB |
実行使用メモリ | 30,592 KB |
最終ジャッジ日時 | 2024-05-02 16:39:34 |
合計ジャッジ時間 | 12,072 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 38 ms
5,632 KB |
testcase_05 | AC | 91 ms
5,760 KB |
testcase_06 | AC | 34 ms
5,760 KB |
testcase_07 | AC | 83 ms
5,888 KB |
testcase_08 | AC | 78 ms
5,760 KB |
testcase_09 | AC | 78 ms
5,760 KB |
testcase_10 | AC | 64 ms
5,632 KB |
testcase_11 | AC | 59 ms
5,760 KB |
testcase_12 | AC | 82 ms
5,632 KB |
testcase_13 | AC | 39 ms
5,632 KB |
testcase_14 | AC | 47 ms
5,504 KB |
testcase_15 | AC | 54 ms
5,632 KB |
testcase_16 | AC | 46 ms
5,632 KB |
testcase_17 | AC | 65 ms
5,632 KB |
testcase_18 | AC | 290 ms
30,592 KB |
testcase_19 | AC | 344 ms
30,464 KB |
testcase_20 | AC | 386 ms
30,592 KB |
testcase_21 | AC | 244 ms
20,352 KB |
testcase_22 | AC | 246 ms
20,352 KB |
testcase_23 | AC | 248 ms
20,352 KB |
testcase_24 | AC | 248 ms
20,480 KB |
testcase_25 | AC | 244 ms
20,224 KB |
testcase_26 | AC | 247 ms
20,352 KB |
testcase_27 | AC | 245 ms
20,480 KB |
testcase_28 | AC | 246 ms
20,480 KB |
testcase_29 | AC | 244 ms
20,352 KB |
testcase_30 | AC | 239 ms
20,480 KB |
testcase_31 | AC | 251 ms
20,352 KB |
testcase_32 | AC | 244 ms
20,352 KB |
testcase_33 | AC | 245 ms
20,352 KB |
testcase_34 | AC | 244 ms
20,352 KB |
testcase_35 | AC | 250 ms
20,352 KB |
testcase_36 | AC | 245 ms
20,352 KB |
testcase_37 | AC | 242 ms
20,352 KB |
testcase_38 | AC | 239 ms
20,352 KB |
testcase_39 | AC | 244 ms
20,480 KB |
testcase_40 | AC | 244 ms
20,352 KB |
testcase_41 | AC | 18 ms
5,376 KB |
testcase_42 | AC | 22 ms
5,376 KB |
testcase_43 | AC | 29 ms
5,376 KB |
testcase_44 | AC | 35 ms
5,376 KB |
testcase_45 | AC | 37 ms
5,376 KB |
testcase_46 | AC | 45 ms
5,376 KB |
testcase_47 | AC | 50 ms
5,632 KB |
ソースコード
/* * Author: $%U%$ * Time: $%Y%$-$%M%$-$%D%$ $%h%$:$%m%$:$%s%$ */ #include<bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i,a,b) for(ll i=(a);i<=(b);i++) #define per(i,a,b) for(ll i=(a);i>=(b);i--) #define re(i,a,b) for(ll i=(a);i<(b);i++) #define pe(i,a,b) for(ll i=(a);i>(b);i--) #define getchar()(p1==p2&&(p2=(p1=buf)+fread(buf,1,1<<21,stdin),p1==p2)?EOF:*p1++) char buf[1<<21],*p1=buf,*p2=buf; template <typename T> inline void read(T& r) { r=0;bool w=0; char ch=getchar(); while(ch<'0'||ch>'9') w=ch=='-'?1:0,ch=getchar(); while(ch>='0'&&ch<='9') r=r*10+(ch^48), ch=getchar(); r=w?-r:r; } template <typename T> inline void readupp(T& r){ r=0; char ch=getchar(); while(ch>'Z'||ch<'A')ch=getchar(); r=ch; } template <typename T> inline void readlow(T& r){ r=0; char ch=getchar(); while(ch>'z'||ch<'a')ch=getchar(); r=ch; } template <typename T> inline void readdig(T& r){ r=0; char ch=getchar(); while(ch>'9'||ch<'0')ch=getchar(); r=ch-'0'; } template <typename T> inline void readvisi(T& r){ r=0; char ch=getchar(); while(ch>126||ch<33)ch=getchar(); r=ch; } template <typename T> inline ll readlowstr(T& r){ ll n=0; char ch=getchar(); while(ch>'z'||ch<'a')ch=getchar(); while(ch<='z'&&ch>='a')r[++n]=ch-'a',ch=getchar(); return n; } template <typename T> inline ll readuppstr(T& r){ ll n=0; char ch=getchar(); while(ch>'Z'||ch<'A')ch=getchar(); while(ch<='Z'&&ch>='A')r[++n]=ch-'A',ch=getchar(); return n; } template <typename T> inline ll readdigstr(T& r){ ll n=0; char ch=getchar(); while(ch>'9'||ch<'0')ch=getchar(); while(ch<='9'&&ch>='0')r[++n]=ch-'0',ch=getchar(); return n; } template <typename T> inline ll readvisistr(T& r){ ll n=0; char ch=getchar(); while(ch>126||ch<33)ch=getchar(); while(ch<=126&&ch>=33)r[++n]=ch,ch=getchar(); return n; } const ll MOD=998244353; ll gcd(ll A,ll B){return B?gcd(B,A%B):A;} template<typename T> void chkmax(T&A,T B){if(A<B)A=B;} template<typename T> void chkmin(T&A,T B){if(A>B)A=B;} template<typename T> T Madd(T A,T B){return A+B>=MOD?A+B-MOD:A+B;} template<typename T> T Msub(T A,T B){return A-B<0?A-B+MOD:A-B;} template<typename T> void MODed(T &A){A%=MOD;A+=(A<0?MOD:0);} ll pw(ll A,ll B){ ll res=1; while(B){ if(B&1)res=res*A%MOD; A=A*A%MOD; B>>=1; } return res; } void _FILE(string s){ freopen((s+".in").c_str(),"r",stdin); freopen((s+".out").c_str(),"w",stdout); } const ll N=200003,M=3003,INF=2000000000000000007ll; set<pair<pair<ll,ll>,bool> > s; typedef set<pair<pair<ll,ll>,bool> >::iterator IT; ll n,q; int main(){ read(n),read(q); s.insert(make_pair(make_pair(1,n-1),0)); rep(i,1,q){ //cout<<"i:"<<i<<endl; ll in1,in2,in3; read(in1); if(in1==1){ read(in2),read(in3); in3--; IT it1=s.lower_bound(make_pair(make_pair(in2,n+1),1)); IT it2=s.lower_bound(make_pair(make_pair(in3,n+1),1)); it1--,it2--; ll o=it1->first.first,p=it2->first.second; bool o1=it1->second,o2=it2->second; if(o1==0&&it1->first.first==in2&&in2!=1)it1--,o1=1,o=it1->first.first; if(o2==0&&it2->first.second==in3&&in3!=n-1)it2++,o2=1,p=it2->first.second; if(o1==1)in2=o; if(o2==1)in3=p; it2++; s.erase(it1,it2); s.insert(make_pair(make_pair(in2,in3),1)); if(o<in2)s.insert(make_pair(make_pair(o,in2-1),0)); if(p>in3)s.insert(make_pair(make_pair(in3+1,p),0)); } if(in1==2){ read(in2),read(in3); in3--; IT it1=s.lower_bound(make_pair(make_pair(in2,n+1),1)); IT it2=s.lower_bound(make_pair(make_pair(in3,n+1),1)); it1--,it2--; ll o=it1->first.first,p=it2->first.second; bool o1=it1->second,o2=it2->second; if(o1==1&&it1->first.first==in2&&in2!=1)it1--,o1=0,o=it1->first.first; if(o2==1&&it2->first.second==in3&&in3!=n-1)it2++,o2=0,p=it2->first.second; if(o1==0)in2=o; if(o2==0)in3=p; it2++; s.erase(it1,it2); s.insert(make_pair(make_pair(in2,in3),0)); if(o<in2)s.insert(make_pair(make_pair(o,in2-1),1)); if(p>in3)s.insert(make_pair(make_pair(in3+1,p),1)); } if(in1==3){ read(in2),read(in3); if(in2>in3)swap(in2,in3); if(in2==in3){ puts("1"); continue; } IT it=s.lower_bound(make_pair(make_pair(in2,n+1),1)); it--; if(it->second==1&&it->first.second>=in3-1)puts("1"); else puts("0"); } if(in1==4){ read(in2); IT it=s.lower_bound(make_pair(make_pair(in2,n+1),1)); it--; if(it->second==1)printf("%lld\n",it->first.second-it->first.first+2); else{ if(in2!=1&&it->first.first==in2){ it--; printf("%lld\n",it->first.second-it->first.first+2); } else puts("1"); } } // for(IT it=s.begin();it!=s.end();it++){ // cout<<it->first.first<<' '<<it->first.second<<' '<<it->second<<endl; // } } return 0; }