結果

問題 No.877 Range ReLU Query
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-06-13 23:10:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 1,098 bytes
コンパイル時間 5,104 ms
コンパイル使用メモリ 277,948 KB
実行使用メモリ 16,724 KB
最終ジャッジ日時 2024-06-13 23:10:15
合計ジャッジ時間 11,121 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 5 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 5 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 321 ms
14,296 KB
testcase_12 AC 276 ms
13,908 KB
testcase_13 AC 224 ms
10,344 KB
testcase_14 AC 241 ms
11,628 KB
testcase_15 AC 332 ms
16,724 KB
testcase_16 AC 311 ms
14,944 KB
testcase_17 AC 317 ms
15,128 KB
testcase_18 AC 319 ms
15,180 KB
testcase_19 AC 313 ms
15,268 KB
testcase_20 AC 312 ms
15,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using lint = long long;

struct S {
    lint val, size;
};

S op(S a, S b) {
    return {a.val + b.val, a.size + b.size};
}

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

int main() {
    int n, q;
    cin >> n >> q;
    /*
    更新クエリ
    {x, i, -1, -1}
    取得クエリ
    {x, l, r, i}
    */
    vector<tuple<lint, lint, lint, lint>> tup;
    for (int i = 0; i < n; i++) {
        lint a;
        cin >> a;
        tup.push_back({a, i, -1, -1});
    }
    for (int i = 0; i < q; i++) {
        int t, l, r;
        lint x;
        cin >> t >> l >> r >> x;
        l--;
        r--;
        tup.push_back({x, l, r, i});
    }
    sort(tup.rbegin(), tup.rend());
    segtree<S, op, e> seg(n);
    vector<lint> ans(q);
    for (auto [x, l, r, i] : tup) {
        if (i == -1) {
            seg.set(l, {x, 1LL});
        } else {
            S res = seg.prod(l, r + 1);
            ans[i] = res.val - res.size * x;
        }
    }
    for (int i = 0; i < q; i++) {
        cout << ans[i] << endl;
    }
}
0