結果

問題 No.1332 Range Nearest Query
ユーザー hitonanodehitonanode
提出日時 2021-01-08 22:32:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,458 ms / 2,500 ms
コード長 1,237 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 208,508 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-11-16 13:28:24
合計ジャッジ時間 36,704 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1,289 ms
5,504 KB
testcase_04 AC 1,248 ms
5,504 KB
testcase_05 AC 1,272 ms
5,632 KB
testcase_06 AC 233 ms
5,760 KB
testcase_07 AC 226 ms
5,888 KB
testcase_08 AC 224 ms
5,888 KB
testcase_09 AC 225 ms
5,888 KB
testcase_10 AC 228 ms
5,888 KB
testcase_11 AC 226 ms
5,888 KB
testcase_12 AC 223 ms
5,888 KB
testcase_13 AC 226 ms
5,888 KB
testcase_14 AC 222 ms
6,016 KB
testcase_15 AC 222 ms
5,888 KB
testcase_16 AC 1,427 ms
5,760 KB
testcase_17 AC 1,446 ms
5,888 KB
testcase_18 AC 1,441 ms
5,888 KB
testcase_19 AC 1,422 ms
5,888 KB
testcase_20 AC 1,433 ms
5,888 KB
testcase_21 AC 1,434 ms
5,760 KB
testcase_22 AC 1,427 ms
5,888 KB
testcase_23 AC 1,439 ms
5,760 KB
testcase_24 AC 1,428 ms
5,888 KB
testcase_25 AC 1,458 ms
5,888 KB
testcase_26 AC 987 ms
5,760 KB
testcase_27 AC 745 ms
5,888 KB
testcase_28 AC 27 ms
5,248 KB
testcase_29 AC 26 ms
5,248 KB
testcase_30 AC 27 ms
5,248 KB
testcase_31 AC 24 ms
5,248 KB
testcase_32 AC 27 ms
5,248 KB
testcase_33 AC 27 ms
5,248 KB
testcase_34 AC 25 ms
5,248 KB
testcase_35 AC 26 ms
5,248 KB
testcase_36 AC 26 ms
5,248 KB
testcase_37 AC 25 ms
5,248 KB
testcase_38 AC 785 ms
5,248 KB
testcase_39 AC 165 ms
5,248 KB
testcase_40 AC 1,385 ms
5,888 KB
testcase_41 AC 386 ms
5,248 KB
testcase_42 AC 769 ms
5,248 KB
testcase_43 AC 529 ms
5,248 KB
testcase_44 AC 1,112 ms
5,248 KB
testcase_45 AC 986 ms
5,248 KB
testcase_46 AC 688 ms
5,248 KB
testcase_47 AC 880 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define REP(i, n) FOR(i,0,n)
template <typename T> bool chmin(T &m, const T q) { if (m > q) {m = q; return true;} else return false; }

constexpr int B = 400;

int main() {
    cin.tie(nullptr), ios::sync_with_stdio(false);
    int N;
    cin >> N;
    vector<int> X(N);
    for (auto &x : X) cin >> x;
    int K = (N + B - 1) / B;
    vector<vector<int>> segs(K);
    REP(i, N) segs[i / B].push_back(X[i]);

    for (auto &vec : segs) sort(vec.begin(), vec.end());

    int Q;
    cin >> Q;
    while (Q--) {
        int l, r, x;
        cin >> l >> r >> x;
        l--;
        int ret = 1 << 30;
        while (l % B and l < r) {
            chmin(ret, abs(x - X[l]));
            l++;
        }
        while (r % B and r > l) {
            r--;
            chmin(ret, abs(x - X[r]));
        }
        for (int ib = l / B, ie = r / B; ib < ie; ib++) {
            auto itr = lower_bound(segs[ib].begin(), segs[ib].end(), x);
            if (itr != segs[ib].end()) chmin(ret, abs(x - *itr));
            if (itr != segs[ib].begin()) chmin(ret, abs(x - *(--itr)));
        }
        cout << ret << '\n';
    }
}
0