結果

問題 No.1982 [Cherry 4th Tune B] 絶険
ユーザー commycommy
提出日時 2022-06-18 00:41:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 489 ms / 3,000 ms
コード長 3,850 bytes
コンパイル時間 1,220 ms
コンパイル使用メモリ 103,976 KB
実行使用メモリ 39,504 KB
最終ジャッジ日時 2024-04-17 17:08:40
合計ジャッジ時間 12,250 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 9 ms
17,180 KB
testcase_03 AC 176 ms
20,276 KB
testcase_04 AC 222 ms
16,640 KB
testcase_05 AC 108 ms
17,024 KB
testcase_06 AC 235 ms
26,136 KB
testcase_07 AC 248 ms
27,988 KB
testcase_08 AC 227 ms
19,200 KB
testcase_09 AC 238 ms
27,932 KB
testcase_10 AC 212 ms
21,020 KB
testcase_11 AC 102 ms
12,800 KB
testcase_12 AC 286 ms
19,968 KB
testcase_13 AC 184 ms
10,880 KB
testcase_14 AC 110 ms
14,324 KB
testcase_15 AC 172 ms
11,776 KB
testcase_16 AC 146 ms
25,260 KB
testcase_17 AC 376 ms
32,596 KB
testcase_18 AC 324 ms
31,644 KB
testcase_19 AC 360 ms
33,780 KB
testcase_20 AC 63 ms
15,528 KB
testcase_21 AC 76 ms
22,652 KB
testcase_22 AC 196 ms
12,544 KB
testcase_23 AC 91 ms
15,232 KB
testcase_24 AC 116 ms
11,264 KB
testcase_25 AC 386 ms
24,792 KB
testcase_26 AC 355 ms
30,132 KB
testcase_27 AC 55 ms
8,064 KB
testcase_28 AC 78 ms
23,332 KB
testcase_29 AC 439 ms
32,980 KB
testcase_30 AC 310 ms
30,760 KB
testcase_31 AC 88 ms
23,328 KB
testcase_32 AC 489 ms
38,660 KB
testcase_33 AC 412 ms
39,504 KB
testcase_34 AC 419 ms
39,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <numeric>
#include <string>
#include <tuple>
#include <utility>
#include <vector>

#define rep(i, a, b) for (int i = int(a); i < int(b); i++)
using namespace std;
using ll = long long int;
using P = pair<ll, ll>;

// clang-format off
#ifdef _DEBUG_
#define dump(...) do{ cerr << __LINE__ << ":\t" << #__VA_ARGS__ << " = "; debug_print(__VA_ARGS__); } while(false)
template<typename T, typename... Ts> void debug_print(const T &t, const Ts &...ts) { cerr << t; ((cerr << ", " << ts), ...); cerr << endl; }
#else
#define dump(...) do{ } while(false)
#endif
template<typename T> vector<T> make_v(size_t a, T b) { return vector<T>(a, b); }
template<typename... Ts> auto make_v(size_t a, Ts... ts) { return vector<decltype(make_v(ts...))>(a, make_v(ts...)); }
template<typename T> bool chmin(T &a, const T& b) { if (a > b) {a = b; return true; } return false; }
template<typename T> bool chmax(T &a, const T& b) { if (a < b) {a = b; return true; } return false; }
template<typename T, typename... Ts> void print(const T& t, const Ts&... ts) { cout << t; ((cout << ' ' << ts), ...); cout << '\n'; }
template<typename... Ts> void input(Ts&... ts) { (cin >> ... >> ts); }
template<typename T> istream &operator,(istream &in, T &t) { return in >> t; }
// clang-format on

#include <functional>
template<typename T>
class SegmentTreeOneAll {
    using Func = function<T(T, T)>;

public:
    vector<T> data;
    int n;
    T init;
    Func update_func;
    Func query_func;
    SegmentTreeOneAll(int _n, T _init, Func up, Func qu) {
        init = _init;
        update_func = up;
        query_func = qu;
        for (n = 1; n < _n; n *= 2)
            ;
        data.resize(2 * n - 1, init);
    }
    void update(int pos, T val) {
        pos += n - 1;
        data[pos] = update_func(data[pos], val);
        while (pos > 0) {
            pos = (pos - 1) / 2;
            data[pos] = query_func(data[2 * pos + 1], data[2 * pos + 2]);
        }
    }
    T query(int l, int r) {
        T resL = init, resR = init;
        for (l += n - 1, r += n - 1; l < r; l = l / 2, r = (r - 1) / 2) {
            if (!(l & 1)) {
                resL = query_func(resL, data[l]);
            }
            if (!(r & 1)) {
                resR = query_func(data[r - 1], resR);
            }
        }
        return query_func(resL, resR);
    }
};

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n, k, q;
    cin, n, k, q;
    vector<vector<int>> add(n), sub(n);
    vector<P> block(k);
    vector<int> color(k);
    rep(i, 0, k) {
        int l, r, c, h;
        cin, l, r, c, h;
        l--;
        r--;
        add[l].emplace_back(i);
        sub[r].emplace_back(i);
        block[i] = P(c, h);
        color[i] = c;
    }
    vector<vector<P>> query(n);
    rep(i, 0, q) {
        ll a, b;
        cin, a, b;
        a--;
        query[a].emplace_back(b, i);
    }
    vector<int> ans(q, -1);

    auto SUM = [](ll a, ll b) { return a + b; };

    SegmentTreeOneAll<ll> seg(k, 0, SUM, SUM);

    rep(i, 0, n) {
        for (auto idx : add[i]) {
            seg.update(idx, block[idx].second);
        }

        for (auto [x, idx] : query[i]) {
            int l = 0, r = k - 1, a = -1;
            while (l <= r) {
                int mid = (l + r) / 2;
                ll s = seg.query(0, mid + 1);
                // dump(i, x, idx, l, r, mid, s);
                if (s >= x) {
                    r = mid - 1;
                    a = mid;
                } else {
                    l = mid + 1;
                }
            }
            if (a != -1) {
                ans[idx] = color[a];
            }
        }

        for (auto idx : sub[i]) {
            seg.update(idx, -block[idx].second);
        }
    }

    rep(i, 0, q) {
        print(ans[i]);
    }

    return 0;
}
0