結果

問題 No.877 Range ReLU Query
ユーザー ooaiuooaiu
提出日時 2024-11-14 13:32:46
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 1,478 bytes
コンパイル時間 4,132 ms
コンパイル使用メモリ 290,860 KB
実行使用メモリ 16,760 KB
最終ジャッジ日時 2024-11-14 13:32:55
合計ジャッジ時間 8,196 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 4 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 265 ms
15,488 KB
testcase_12 AC 229 ms
14,804 KB
testcase_13 AC 185 ms
11,300 KB
testcase_14 AC 194 ms
11,152 KB
testcase_15 AC 281 ms
16,384 KB
testcase_16 AC 268 ms
16,064 KB
testcase_17 AC 271 ms
16,112 KB
testcase_18 AC 267 ms
16,124 KB
testcase_19 AC 252 ms
16,636 KB
testcase_20 AC 275 ms
16,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

#include <atcoder/segtree>
using S = long long;
S op(S a, S b) {
    return a + b;
}
S e() {
    return 0;
}
void solve() {
    int N, Q;
    cin >> N >> Q;
    vector<S> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];
    set<pair<int, int>> st;
    for (int i = 0; i < N; i++) st.insert({A[i], i});
    vector<array<long long, 4>> Qs(Q);
    for (int i = 0; i < Q; i++) {
        int t;
        cin >> t;
        int l, r, x;
        cin >> l >> r >> x;
        Qs[i] = {x, l, r, i};
    }
    debug(Qs);
    // cnt, sum
    atcoder::segtree<S, op, e> cnt(N);
    atcoder::segtree<S, op, e> sum(A);
    sort(Qs.begin(), Qs.end());
    auto Query = [&](int l, int r, long long x) -> S {
        l--;
        return x * cnt.prod(l, r) + sum.prod(l, r) - x * (r - l);
    };
    vector<S> ans(Q);
    for (int ii = 0; ii < Q; ii++) {
        auto [x, l, r, i] = Qs[ii];
        while (!st.empty() && st.begin()->first <= x) {
            auto it = st.begin();
            auto [val, idx] = *it;
            st.erase(it);
            cnt.set(idx, 1);
            sum.set(idx, 0);
        }
        ans[i] = Query(l, r, x);
    }
    for (int i = 0; i < Q; i++) cout << ans[i] << endl;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0