結果

問題 No.1332 Range Nearest Query
ユーザー vwxyzvwxyz
提出日時 2024-08-15 06:04:10
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,501 bytes
コンパイル時間 3,208 ms
コンパイル使用メモリ 260,344 KB
実行使用メモリ 38,220 KB
最終ジャッジ日時 2024-08-15 06:04:26
合計ジャッジ時間 14,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 184 ms
37,772 KB
testcase_07 AC 190 ms
35,776 KB
testcase_08 AC 186 ms
37,348 KB
testcase_09 AC 181 ms
35,008 KB
testcase_10 AC 182 ms
36,488 KB
testcase_11 AC 189 ms
35,416 KB
testcase_12 AC 178 ms
35,684 KB
testcase_13 AC 194 ms
36,340 KB
testcase_14 AC 184 ms
37,708 KB
testcase_15 AC 181 ms
37,320 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 206 ms
38,144 KB
testcase_27 AC 167 ms
36,036 KB
testcase_28 AC 52 ms
9,936 KB
testcase_29 AC 49 ms
9,928 KB
testcase_30 AC 52 ms
9,928 KB
testcase_31 AC 47 ms
10,060 KB
testcase_32 AC 53 ms
9,932 KB
testcase_33 AC 52 ms
10,056 KB
testcase_34 AC 49 ms
9,932 KB
testcase_35 AC 49 ms
9,932 KB
testcase_36 AC 48 ms
9,932 KB
testcase_37 AC 50 ms
9,936 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/segtree>
using namespace std;
using namespace atcoder;

struct Query {
    int value, left, right, index;
    bool operator<(const Query& other) const {
        if (value != other.value) 
            return value < other.value;
        return left < other.left;
    }
};

int op(int a, int b) {
    return max(a, b);
}

int e() {
    return -1e9;  // effectively negative infinity
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int N;
    cin >> N;
    vector<int> X(N);
    for (int i = 0; i < N; ++i) {
        cin >> X[i];
    }

    int Q;
    cin >> Q;
    vector<Query> query0, query1;
    vector<int> ans(Q, INT_MAX);
    for (int i = 0; i < N; ++i) {
        query0.push_back({X[i], -1, -1, i});
        query1.push_back({-X[i], -1, -1, i});
    }
    for (int i = 0; i < Q; ++i) {
        int l, r, x;
        cin >> l >> r >> x;
        --l;
        query0.push_back({x, l, r, i});
        query1.push_back({-x, l, r, i});
    }

    sort(query0.begin(), query0.end());
    sort(query1.begin(), query1.end());

    for (auto& query : {query0, query1}) {
        segtree<int, op, e> seg(N);
        for (auto& q : query) {
            if (q.left == -1) {
                seg.set(q.index, q.value);
            } else {
                ans[q.index] = min(ans[q.index], q.value - seg.prod(q.left, q.right));
            }
        }
    }

    for (int i = 0; i < Q; ++i) {
        cout << ans[i] << "\n";
    }

    return 0;
}
0