結果

問題 No.1332 Range Nearest Query
ユーザー kk
提出日時 2021-04-21 01:14:53
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 775 ms / 2,500 ms
コード長 1,258 bytes
コンパイル時間 2,276 ms
コンパイル使用メモリ 206,256 KB
実行使用メモリ 192,056 KB
最終ジャッジ日時 2024-07-04 05:47:11
合計ジャッジ時間 30,597 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
143,968 KB
testcase_01 AC 54 ms
144,060 KB
testcase_02 AC 53 ms
144,052 KB
testcase_03 AC 717 ms
177,232 KB
testcase_04 AC 744 ms
177,104 KB
testcase_05 AC 703 ms
177,228 KB
testcase_06 AC 521 ms
192,056 KB
testcase_07 AC 521 ms
191,928 KB
testcase_08 AC 515 ms
191,928 KB
testcase_09 AC 513 ms
191,928 KB
testcase_10 AC 513 ms
191,928 KB
testcase_11 AC 519 ms
192,056 KB
testcase_12 AC 518 ms
191,928 KB
testcase_13 AC 522 ms
191,928 KB
testcase_14 AC 521 ms
192,056 KB
testcase_15 AC 522 ms
191,928 KB
testcase_16 AC 753 ms
191,928 KB
testcase_17 AC 769 ms
192,056 KB
testcase_18 AC 770 ms
191,928 KB
testcase_19 AC 762 ms
191,924 KB
testcase_20 AC 767 ms
191,928 KB
testcase_21 AC 775 ms
191,864 KB
testcase_22 AC 774 ms
192,052 KB
testcase_23 AC 745 ms
191,924 KB
testcase_24 AC 764 ms
192,056 KB
testcase_25 AC 773 ms
191,928 KB
testcase_26 AC 382 ms
192,056 KB
testcase_27 AC 381 ms
191,932 KB
testcase_28 AC 202 ms
144,064 KB
testcase_29 AC 202 ms
144,016 KB
testcase_30 AC 201 ms
143,928 KB
testcase_31 AC 196 ms
143,940 KB
testcase_32 AC 210 ms
144,032 KB
testcase_33 AC 202 ms
144,104 KB
testcase_34 AC 198 ms
143,996 KB
testcase_35 AC 200 ms
143,952 KB
testcase_36 AC 201 ms
144,016 KB
testcase_37 AC 200 ms
143,956 KB
testcase_38 AC 576 ms
167,740 KB
testcase_39 AC 319 ms
145,380 KB
testcase_40 AC 742 ms
190,724 KB
testcase_41 AC 423 ms
150,924 KB
testcase_42 AC 581 ms
166,728 KB
testcase_43 AC 495 ms
156,812 KB
testcase_44 AC 663 ms
174,076 KB
testcase_45 AC 628 ms
171,972 KB
testcase_46 AC 543 ms
159,888 KB
testcase_47 AC 608 ms
170,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const int INF = 1<<30;
vector<int> t[6000000];

void build(const vector<int> &x, int k, int l, int r) {
  if (l < r) {
    if (l + 1 == r) {
      t[k].push_back(x[l]);
    } else {
      int m = (l + r) / 2;
      build(x, 2 * k + 1, l, m);
      build(x, 2 * k + 2, m, r);
      merge(t[2*k+1].begin(), t[2*k+1].end(),
            t[2*k+2].begin(), t[2*k+2].end(), back_inserter(t[k]));
    }
  }
}

int query(int k, int l, int r, int a, int b, int y) {
  if (b <= l || r <= a) return INF;
  if (a <= l && r <= b) {
    int ret = INF;
    int pos = lower_bound(t[k].begin(), t[k].end(), y) - t[k].begin();
    if (pos < t[k].size())
      ret = min(ret, abs(t[k][pos] - y));
    if (--pos >= 0)
      ret = min(ret, abs(t[k][pos] - y));
    return ret;
  }
  int mi = (l + r) / 2;
  return min(query(2 * k + 1, l, mi, a, b, y), query(2 * k + 2, mi, r, a, b, y));
}

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

  int n;
  cin >> n;
  vector<int> x(n);
  for (int i = 0; i < n; i++)
    cin >> x[i];

  build(x, 0, 0, n);
  
  int q;
  cin >> q;
  for (int i = 0; i < q; i++) {
    int l, r, y;
    cin >> l >> r >> y;
    --l;
    cout << query(0, 0, n, l, r, y) << endl;
  }
  
  return 0;
}
0