結果

問題 No.230 Splarraay スプラレェーイ
ユーザー akiaki
提出日時 2024-10-16 20:36:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,166 bytes
コンパイル時間 2,559 ms
コンパイル使用メモリ 211,124 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-10-16 20:36:10
合計ジャッジ時間 5,062 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,248 KB
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 AC 57 ms
7,808 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 75 ms
7,808 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);++i)
using namespace std;
using ll = long long;

#include <atcoder/lazysegtree>
using namespace atcoder;

struct S{
    int a,b,sz;
};
S op(S a, S b){
    return S{a.a+b.a,a.b+b.b,a.sz+b.sz};
}

S e(){
    return {0,0,0};
}

using F = int;
S mapping(F f, S s){
    if(f==1){
        s.a = s.sz;
        s.b = 0;
    }
    if(f==2){
        s.a = 0;
        s.b = s.sz;
    }
    return s;
}

F composition(F f, F g){
    return (f==0?g:f);
}

F id(){
    return F{0};
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int n,q;
    cin >> n >> q;

    lazy_segtree<S,op,e,F,mapping,composition,id> seg(n);
    rep(i,n) seg.set(i,S{0,0,1});

    ll A = 0;
    ll B = 0;
    rep(i,q){
        int x,l,r;
        cin >> x >> l >> r;
        r++;
        if(x==0){
            S res = seg.prod(l,r);
            if(res.a>res.b){
                A += res.a;
            }
            if(res.b<res.b){
                B += res.b;
            }
        }
        else{
            seg.apply(l,r,x);
        }
    }
    cout << A+seg.all_prod().a << " " << B+seg.all_prod().b << endl;
}
0