結果

問題 No.1982 [Cherry 4th Tune B] 絶険
ユーザー sotanishysotanishy
提出日時 2022-06-17 22:21:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 557 ms / 3,000 ms
コード長 3,960 bytes
コンパイル時間 3,030 ms
コンパイル使用メモリ 227,880 KB
実行使用メモリ 39,016 KB
最終ジャッジ日時 2024-10-09 08:28:48
合計ジャッジ時間 15,577 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 34 ms
29,568 KB
testcase_03 AC 162 ms
31,104 KB
testcase_04 AC 174 ms
16,872 KB
testcase_05 AC 220 ms
17,768 KB
testcase_06 AC 295 ms
31,208 KB
testcase_07 AC 364 ms
30,696 KB
testcase_08 AC 197 ms
21,736 KB
testcase_09 AC 278 ms
33,380 KB
testcase_10 AC 278 ms
19,688 KB
testcase_11 AC 170 ms
11,880 KB
testcase_12 AC 282 ms
21,224 KB
testcase_13 AC 118 ms
10,724 KB
testcase_14 AC 219 ms
9,452 KB
testcase_15 AC 137 ms
11,236 KB
testcase_16 AC 291 ms
28,756 KB
testcase_17 AC 473 ms
34,280 KB
testcase_18 AC 438 ms
33,772 KB
testcase_19 AC 475 ms
35,052 KB
testcase_20 AC 72 ms
27,008 KB
testcase_21 AC 142 ms
31,080 KB
testcase_22 AC 155 ms
11,112 KB
testcase_23 AC 97 ms
18,788 KB
testcase_24 AC 149 ms
8,680 KB
testcase_25 AC 376 ms
23,144 KB
testcase_26 AC 412 ms
32,996 KB
testcase_27 AC 77 ms
7,656 KB
testcase_28 AC 143 ms
34,432 KB
testcase_29 AC 421 ms
39,016 KB
testcase_30 AC 313 ms
38,136 KB
testcase_31 AC 252 ms
34,304 KB
testcase_32 AC 557 ms
38,884 KB
testcase_33 AC 521 ms
38,248 KB
testcase_34 AC 451 ms
38,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, t) for (int i = (int)(s); i < (int)(t); ++i)
#define revrep(i, t, s) for (int i = (int)(t)-1; i >= (int)(s); --i)
#define all(x) begin(x), end(x)
template <typename T> bool chmax(T& a, const T& b) { return a < b ? (a = b, 1) : 0; }
template <typename T> bool chmin(T& a, const T& b) { return a > b ? (a = b, 1) : 0; }

template <typename M, typename O, typename M::T (*act)(typename M::T, typename O::T)>
class LazySegmentTree {
    using T = typename M::T;
    using E = typename O::T;

public:
    LazySegmentTree() = default;
    explicit LazySegmentTree(int n) : LazySegmentTree(std::vector<T>(n, M::id())) {}
    explicit LazySegmentTree(const std::vector<T>& v) {
        size = 1;
        while (size < (int) v.size()) size <<= 1;
        node.resize(2 * size, M::id());
        lazy.resize(2 * size, O::id());
        std::copy(v.begin(), v.end(), node.begin() + size);
        for (int i = size - 1; i > 0; --i) node[i] = M::op(node[2 * i], node[2 * i + 1]);
    }

    T operator[](int k) {
        return fold(k, k + 1);
    }

    void update(int l, int r, const E& x) { update(l, r, x, 1, 0, size); }

    T fold(int l, int r) { return fold(l, r, 1, 0, size); }

private:
    int size;
    std::vector<T> node;
    std::vector<E> lazy;

    void push(int k) {
        if (lazy[k] == O::id()) return;
        if (k < size) {
            lazy[2 * k] = O::op(lazy[2 * k], lazy[k]);
            lazy[2 * k + 1] = O::op(lazy[2 * k + 1], lazy[k]);
        }
        node[k] = act(node[k], lazy[k]);
        lazy[k] = O::id();
    }

    void update(int a, int b, const E& x, int k, int l, int r) {
        push(k);
        if (r <= a || b <= l) return;
        if (a <= l && r <= b) {
            lazy[k] = O::op(lazy[k], x);
            push(k);
            return;
        }
        int m = (l + r) / 2;
        update(a, b, x, 2 * k, l, m);
        update(a, b, x, 2 * k + 1, m, r);
        node[k] = M::op(node[2 * k], node[2 * k + 1]);
    }

    T fold(int a, int b, int k, int l, int r) {
        push(k);
        if (r <= a || b <= l) return M::id();
        if (a <= l && r <= b) return node[k];
        int m = (l + r) / 2;
        return M::op(fold(a, b, 2 * k, l, m),
                     fold(a, b, 2 * k + 1, m, r));
    }
};

struct AddMonoid {
    using T = ll;
    static T id() { return 0; }
    static T op(T a, T b) {
        return a + b;
    }
};

struct MinMonoid {
    using T = pair<ll, int>;
    static T id() { return {1e18, -1}; }
    static T op(T a, T b) {
        return min(a, b);
    }
};

pair<ll, int> act(pair<ll, int> a, ll b) {
    return {a.first+b, a.second};
}


int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);

    int N, K, Q;
    cin >> N >> K >> Q;
    vector<tuple<int, int, int, ll>> ops;
    rep(_,0,K) {
        int l, r, c;
        ll h;
        cin >> l >> r >> c >> h;
        ops.push_back({l-1, r, c, h});
    }
    vector<vector<pair<ll, int>>> queries(N);
    rep(q,0,Q) {
        int i;
        ll x;
        cin >> i >> x;
        --i;
        queries[i].push_back({x, q});
    }

    vector<pair<ll, int>> init(N);
    rep(i,0,N) {
        queries[i].push_back({1e18, -1});
        sort(all(queries[i]));
        reverse(all(queries[i]));
        auto [x, q] = queries[i].back();
        init[i] = {x, i};
    }
    LazySegmentTree<MinMonoid, AddMonoid, act> st(init);
    vector<int> ans(Q, -1);
    for (auto [l, r, c, h] : ops) {
        st.update(l, r, -h);
        while (true) {
            auto [x, i] = st.fold(0, N);
            if (x <= 0) {
                auto [y, q] = queries[i].back();
                queries[i].pop_back();
                st.update(i, i+1, queries[i].back().first-y);
                ans[q] = c;
            } else {
                break;
            }
        }
    }
    rep(i,0,Q) cout << ans[i] << "\n";
}
0