結果

問題 No.1982 [Cherry 4th Tune B] 絶険
ユーザー 👑 NachiaNachia
提出日時 2024-04-18 02:37:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 315 ms / 3,000 ms
コード長 1,544 bytes
コンパイル時間 1,185 ms
コンパイル使用メモリ 101,748 KB
実行使用メモリ 36,096 KB
最終ジャッジ日時 2024-10-09 20:17:05
合計ジャッジ時間 12,158 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 9 ms
12,544 KB
testcase_03 AC 116 ms
16,512 KB
testcase_04 AC 120 ms
15,360 KB
testcase_05 AC 110 ms
17,024 KB
testcase_06 AC 153 ms
22,656 KB
testcase_07 AC 191 ms
26,112 KB
testcase_08 AC 124 ms
16,896 KB
testcase_09 AC 151 ms
23,424 KB
testcase_10 AC 151 ms
21,248 KB
testcase_11 AC 87 ms
13,952 KB
testcase_12 AC 154 ms
19,328 KB
testcase_13 AC 96 ms
11,264 KB
testcase_14 AC 119 ms
19,584 KB
testcase_15 AC 94 ms
12,288 KB
testcase_16 AC 135 ms
23,168 KB
testcase_17 AC 251 ms
30,592 KB
testcase_18 AC 219 ms
28,544 KB
testcase_19 AC 253 ms
31,104 KB
testcase_20 AC 42 ms
12,416 KB
testcase_21 AC 66 ms
17,920 KB
testcase_22 AC 108 ms
13,440 KB
testcase_23 AC 58 ms
12,544 KB
testcase_24 AC 86 ms
12,928 KB
testcase_25 AC 221 ms
25,472 KB
testcase_26 AC 220 ms
27,904 KB
testcase_27 AC 43 ms
8,576 KB
testcase_28 AC 90 ms
18,688 KB
testcase_29 AC 219 ms
31,396 KB
testcase_30 AC 178 ms
29,196 KB
testcase_31 AC 93 ms
18,816 KB
testcase_32 AC 315 ms
35,072 KB
testcase_33 AC 271 ms
36,096 KB
testcase_34 AC 266 ms
35,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <atcoder/segtree>
using namespace std;
using i64 = long long;
#define rep(i,n) for(int i=0; i<(int)(n); i++)


const i64 INF = 1001001001001001001;

template<class S> struct SegtreeSum{
    static S op(S l, S r){ return l + r; }
    static S e(){ return S(0); }
    using Type = struct atcoder::segtree<S,op,e>;
    struct LessThan{
        S y;
        LessThan(const S& s) : y(s) {}
        bool operator()(S x) const { return x < y; }
    };
};


int main(){
	std::ios::sync_with_stdio(false);
	std::cin.tie(nullptr);
    int N; cin >> N;
    int K; cin >> K;
    int Q; cin >> Q;

    struct AddQuery{ int p; i64 x; };
    vector<vector<AddQuery>> addQueries(N+1);
    vector<int> col(K+1, -1);

    rep(i,K){
        int l; cin >> l; l--;
        int r; cin >> r;
        int c; cin >> c;
        int k; cin >> k;
        addQueries[l].push_back({ i, k });
        addQueries[r].push_back({ i, -k });
        col[i] = c;
    }

    struct AnswerQuery{ i64 h; int idx; };
    vector<vector<AnswerQuery>> answerQueries(N);
    rep(i,Q){
        int p; cin >> p; p--;
        i64 h; cin >> h;
        answerQueries[p].push_back({ h, i });
    }

    vector<int> ans(Q, -1);
    SegtreeSum<i64>::Type rq(K);

    rep(i,N){
        for(auto q : addQueries[i]) rq.set(q.p, rq.get(q.p) + q.x);
        for(auto q : answerQueries[i]) ans[q.idx] = col[rq.max_right(0, SegtreeSum<i64>::LessThan(q.h))];
    }

    rep(i,Q) cout << ans[i] << '\n';
    return 0;
}
0