結果
問題 | No.230 Splarraay スプラレェーイ |
ユーザー | kotatsugame |
提出日時 | 2019-09-08 13:41:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 247 ms / 5,000 ms |
コード長 | 2,411 bytes |
コンパイル時間 | 986 ms |
コンパイル使用メモリ | 84,784 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-06-27 14:57:53 |
合計ジャッジ時間 | 3,238 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 13 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 5 ms
5,376 KB |
testcase_09 | AC | 111 ms
5,376 KB |
testcase_10 | AC | 94 ms
5,376 KB |
testcase_11 | AC | 63 ms
5,376 KB |
testcase_12 | AC | 110 ms
5,376 KB |
testcase_13 | AC | 18 ms
5,376 KB |
testcase_14 | AC | 86 ms
7,424 KB |
testcase_15 | AC | 156 ms
7,296 KB |
testcase_16 | AC | 197 ms
7,296 KB |
testcase_17 | AC | 247 ms
7,296 KB |
testcase_18 | AC | 135 ms
7,296 KB |
testcase_19 | AC | 149 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]); } inline 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; }