結果

問題 No.877 Range ReLU Query
ユーザー ooaiuooaiu
提出日時 2024-11-14 13:30:47
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,478 bytes
コンパイル時間 4,100 ms
コンパイル使用メモリ 291,864 KB
実行使用メモリ 16,760 KB
最終ジャッジ日時 2024-11-14 13:30:58
合計ジャッジ時間 10,641 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 2 ms
6,816 KB
testcase_05 RE -
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 284 ms
16,256 KB
testcase_16 AC 259 ms
16,064 KB
testcase_17 AC 281 ms
16,120 KB
testcase_18 AC 273 ms
16,384 KB
testcase_19 AC 247 ms
16,632 KB
testcase_20 AC 266 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(N);
    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