結果

問題 No.1000 Point Add and Array Add
ユーザー MisterMister
提出日時 2020-03-12 21:58:30
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 2,976 bytes
コンパイル時間 1,202 ms
コンパイル使用メモリ 135,336 KB
実行使用メモリ 19,716 KB
最終ジャッジ日時 2024-05-07 20:43:51
合計ジャッジ時間 4,192 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 115 ms
13,576 KB
testcase_17 AC 108 ms
13,980 KB
testcase_18 AC 166 ms
18,388 KB
testcase_19 AC 177 ms
18,396 KB
testcase_20 AC 147 ms
18,808 KB
testcase_21 AC 174 ms
19,484 KB
testcase_22 AC 160 ms
19,020 KB
testcase_23 AC 177 ms
19,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <functional>
#include <queue>

template <class T>
using MinHeap = std::priority_queue<T, std::vector<T>, std::greater<T>>;

template <class T>
struct SegmentTree {
    using Merger = std::function<T(T, T)>;

    int length;
    std::vector<T> dat;
    T unit;
    Merger merge;

    explicit SegmentTree(int n, T unit, Merger merge)
        : length(1), unit(unit), merge(merge) {
        while (length < n) length <<= 1;
        dat.assign(length * 2, unit);
    }

    T query(int ql, int qr) {
        ql = std::max(ql, 0);
        qr = std::min(qr, length);
        ql += length, qr += length;

        T lacc = unit, racc = unit;
        while (ql < qr) {
            if (ql & 1) {
                lacc = merge(lacc, dat[ql]);
                ++ql;
            }
            if (qr & 1) {
                --qr;
                racc = merge(dat[qr], racc);
            }
            ql >>= 1, qr >>= 1;
        }
        return merge(lacc, racc);
    }

    void update(int nidx, T elem) {
        nidx += length;
        dat[nidx] = elem;

        while (nidx > 0) {
            nidx >>= 1;
            T vl = dat[nidx * 2 + 0];
            T vr = dat[nidx * 2 + 1];
            dat[nidx] = merge(vl, vr);
        }
    }
};

using lint = long long;

void solve() {
    int n, q;
    std::cin >> n >> q;

    std::vector<lint> xs(n);
    for (auto& x : xs) std::cin >> x;

    std::vector<std::vector<std::pair<lint, int>>> adds(n);
    std::vector<std::tuple<int, int, int>> qs;
    for (int t = 0; t < q; ++t) {
        char c;
        std::cin >> c;
        if (c == 'A') {
            int i;
            lint x;
            std::cin >> i >> x;
            --i;
            adds[i].emplace_back(x, t);
        } else {
            int l, r;
            std::cin >> l >> r;
            --l, --r;
            qs.emplace_back(l, r, t);
        }
    }
    std::sort(qs.begin(), qs.end());

    SegmentTree<lint>
        seg(q, 0, [](auto a, auto b) { return a + b; });

    MinHeap<std::pair<int, int>> heap;
    int qi = 0;
    for (int i = 0; i < n; ++i) {
        while (qi < (int)qs.size() &&
               std::get<0>(qs[qi]) <= i) {
            int l, r, t;
            std::tie(l, r, t) = qs[qi];

            seg.update(t, 1);
            ++qi;
            heap.emplace(r, t);
        }

        lint ans = seg.query(0, q) * xs[i];
        for (auto p : adds[i]) {
            lint x;
            int t;
            std::tie(x, t) = p;
            ans += seg.query(t, q) * x;
        }
        std::cout << ans << " ";

        while (!heap.empty() &&
               heap.top().first == i) {
            int r, t;
            std::tie(r, t) = heap.top();
            heap.pop();
            seg.update(t, 0);
        }
    }

    std::cout << std::endl;
}

int main() {
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0