結果

問題 No.876 Range Compress Query
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-06-12 11:52:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 1,220 bytes
コンパイル時間 4,840 ms
コンパイル使用メモリ 269,872 KB
実行使用メモリ 13,392 KB
最終ジャッジ日時 2024-06-12 11:52:22
合計ジャッジ時間 8,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 270 ms
12,756 KB
testcase_12 AC 227 ms
12,432 KB
testcase_13 AC 230 ms
12,708 KB
testcase_14 AC 266 ms
12,796 KB
testcase_15 AC 198 ms
12,976 KB
testcase_16 AC 266 ms
13,340 KB
testcase_17 AC 271 ms
13,392 KB
testcase_18 AC 283 ms
13,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

using lint = long long;

struct S {
    lint left, sum, right;
};

S op(S a, S b) {
    S res;
    if (a.left == 0) {
        res = b;
    } else if (b.right == 0) {
        res = a;
        res.sum++;
    } else {
        res.left = a.left;
        res.sum = (a.right == b.left ? a.sum + b.sum : a.sum + b.sum + 1);
        res.right = b.right;
    }
    return res;
}

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

S mapping(lint x, S s) {
    return {s.left + x, s.sum, s.right + x};
}

lint composition(lint f, lint g) {
    return f + g;
}

lint id() {
    return 0LL;
}

int main() {
    int n, q;
    cin >> n >> q;
    vector<lint> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    lazy_segtree<S, op, e, lint, mapping, composition, id> seg(n);
    for (int i = 0; i < n; i++) {
        seg.set(i, {a[i], 0LL, a[i]});
    }
    while (q--) {
        int t, l, r;
        cin >> t >> l >> r;
        l--;
        r--;
        if (t == 1) {
            lint x;
            cin >> x;
            seg.apply(l, r + 1, x);
        } else {
            cout << seg.prod(l, r + 1).sum << endl;
        }
    }
}
0