結果
問題 | No.230 Splarraay スプラレェーイ |
ユーザー | kotatsugame |
提出日時 | 2019-09-08 13:41:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 246 ms / 5,000 ms |
コード長 | 2,404 bytes |
コンパイル時間 | 1,092 ms |
コンパイル使用メモリ | 84,884 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-06-27 14:57:49 |
合計ジャッジ時間 | 4,099 ms |
ジャッジサーバーID (参考情報) |
judge5 / 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 | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 12 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 108 ms
5,504 KB |
testcase_10 | AC | 95 ms
5,376 KB |
testcase_11 | AC | 62 ms
5,376 KB |
testcase_12 | AC | 108 ms
5,376 KB |
testcase_13 | AC | 18 ms
5,376 KB |
testcase_14 | AC | 87 ms
7,424 KB |
testcase_15 | AC | 157 ms
7,296 KB |
testcase_16 | AC | 195 ms
7,296 KB |
testcase_17 | AC | 246 ms
7,296 KB |
testcase_18 | AC | 137 ms
7,296 KB |
testcase_19 | AC | 145 ms
7,424 KB |
コンパイルメッセージ
main.cpp:78:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 78 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; #include<vector> #include<functional> template<typename T> struct lazysegtree{ function<T(T,T)>calcfn,lazycalcfn; function<T(T,T,unsigned int)>updatefn; int n; T defvalue,lazydefvalue; vector<T>dat,lazy; vector<bool>lazyflag; lazysegtree(int n_=0,T defvalue_=0, function<T(T,T)>calcfn_=[](T a,T b){return a+b;}, function<T(T,T)>lazycalcfn_=[](T a,T b){return a+b;}, function<T(T,T,unsigned int)>updatefn_=[](T a,T b,unsigned int width){return a+b*width;}, T lazydefvalue_=0 ):defvalue(defvalue_),lazydefvalue(lazydefvalue_), calcfn(calcfn_),lazycalcfn(lazycalcfn_),updatefn(updatefn_) { n=1; while(n<n_)n<<=1; dat.assign(2*n-1,defvalue); lazy.assign(2*n-1,lazydefvalue); lazyflag.assign(2*n-1,false); } void copy(const vector<T>&v) { for(int i=0;i<v.size();i++)dat[i+n-1]=v[i]; for(int i=n-2;i>=0;i--)dat[i]=calcfn(dat[2*i+1],dat[2*i+2]); } void eval(int i,int l,int r) { if(lazyflag[i]) { dat[i]=updatefn(dat[i],lazy[i],r-l); if(r-l>1) { lazy[2*i+1]=lazycalcfn(lazy[2*i+1],lazy[i]); lazy[2*i+2]=lazycalcfn(lazy[2*i+2],lazy[i]); lazyflag[2*i+1]=lazyflag[2*i+2]=true; } lazy[i]=lazydefvalue; lazyflag[i]=false; } } void update(int a,int b,T x,int k=0,int l=0,int r=-1)//[a,b) { if(r<0)r=n; eval(k,l,r); if(b<=l||r<=a)return; else if(a<=l&&r<=b) { lazy[k]=lazycalcfn(lazy[k],x); lazyflag[k]=true; eval(k,l,r); } else { update(a,b,x,2*k+1,l,(l+r)/2); update(a,b,x,2*k+2,(l+r)/2,r); dat[k]=calcfn(dat[2*k+1],dat[2*k+2]); } } T query(int a,int b,int k=0,int l=0,int r=-1)//[a,b) { if(r<0)r=n; eval(k,l,r); if(b<=l||r<=a)return defvalue; else if(a<=l&&r<=b)return dat[k]; else return calcfn( query(a,b,2*k+1,l,(l+r)/2), query(a,b,2*k+2,(l+r)/2,r) ); } }; int N,Q; main() { cin>>N>>Q; lazysegtree<long>P(N,0, [](long a,long b){return a+b;}, [](long a,long b){return b;}, [](long a,long b,unsigned int w){return b*w;}); P.update(0,N,1<<17); long A=0,B=0; for(int i=0;i<Q;i++) { int x,l,r;cin>>x>>l>>r; if(x==0) { long a=P.query(l,r+1); long x=a%(1<<17); long y=(r-l+1)-(a>>17)-x; if(x>y)A+=x; else if(x<y)B+=y; } else if(x==1) { P.update(l,r+1,1); } else { P.update(l,r+1,0); } } long a=P.query(0,N); long x=a%(1<<17); long y=N-(a>>17)-x; A+=x; B+=y; cout<<A<<" "<<B<<endl; }