結果
問題 | No.879 Range Mod 2 Query |
ユーザー | vwxyz |
提出日時 | 2024-04-11 01:44:29 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,836 bytes |
コンパイル時間 | 3,149 ms |
コンパイル使用メモリ | 257,740 KB |
実行使用メモリ | 15,616 KB |
最終ジャッジ日時 | 2024-10-02 21:09:18 |
合計ジャッジ時間 | 7,430 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 287 ms
15,360 KB |
testcase_20 | AC | 286 ms
15,616 KB |
testcase_21 | AC | 304 ms
15,360 KB |
ソースコード
#include <iostream> #include <vector> #include <atcoder/lazysegtree> #include <cstdio> #include <bits/stdc++.h> using namespace std; using namespace atcoder; struct S { long long s; long long ce; long long co; }; struct F { long long p; long long d; long long x; }; S op(S l, S r) { return S{l.s+r.s, l.ce+r.ce, l.co+r.co}; } S e() { return S{0ll, 0ll, 0ll}; } F composition(F r, F l) { if (l.d){ return F({(r.p+r.x+l.p)%2,1ll,l.x}); } else if (r.d){ return F({r.p,1ll,r.x+l.x}); } else{ return F({0ll,0ll,r.x+l.x}); } } S mapping(F l, S r) { long long s,ce,co; long long p,d,x; s=r.s;ce=r.ce;co=r.co; p=l.p;d=l.d;x=l.x; if (d){ if(p){ swap(ce,co); } s=co+x*(ce+co); if(x%2){ swap(ce,co); } } else{ s+=x*(ce+co); if(x%2){ swap(ce,co); } } return S({s,ce,co}); } F id() { return F({0ll, 0ll, 0ll}); } int main() { int N, Q; cin >> N >> Q; vector<long long> A(N); for(int i=0;i<N;i++){ cin>>A[i]; } vector<S> a(N); for(int i=0;i<N;i++){ if(A[i]%2){ a[i]=S({A[i],0ll,1ll}); } else{ a[i]=S({A[i],1ll,0ll}); } } lazy_segtree<S, op, e, F, mapping, composition, id> seg(a); for(int q=0;q<Q;q++){ int t,l,r; long long x; cin>>t; if(t==1){ cin>>l>>r; l-=1; seg.apply(l,r,F({0ll,1ll,0ll})); } else if(t==2){ cin>>l>>r>>x; l-=1; seg.apply(l,r,F({0ll,0ll,x})); } else if(t==3){ cin>>l>>r; l-=1; long long ans=seg.prod(l,r).s; cout<<ans<<endl; } } return 0; }