結果

問題 No.1332 Range Nearest Query
ユーザー SSRSSSRS
提出日時 2021-01-08 21:43:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,190 bytes
コンパイル時間 1,873 ms
コンパイル使用メモリ 185,916 KB
実行使用メモリ 35,712 KB
最終ジャッジ日時 2024-11-16 10:59:20
合計ジャッジ時間 122,089 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
13,640 KB
testcase_02 AC 1 ms
10,624 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 397 ms
27,136 KB
testcase_27 AC 397 ms
35,712 KB
testcase_28 AC 177 ms
11,776 KB
testcase_29 AC 178 ms
27,520 KB
testcase_30 AC 180 ms
13,764 KB
testcase_31 AC 166 ms
11,904 KB
testcase_32 AC 178 ms
11,904 KB
testcase_33 AC 180 ms
20,224 KB
testcase_34 AC 176 ms
11,904 KB
testcase_35 AC 180 ms
17,536 KB
testcase_36 AC 174 ms
11,776 KB
testcase_37 AC 179 ms
24,448 KB
testcase_38 TLE -
testcase_39 AC 1,408 ms
23,680 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int B = 400;
const int INF = 1000000000;
int main(){
  int N;
  cin >> N;
  vector<int> X(N);
  for (int i = 0; i < N; i++){
    cin >> X[i];
  }
  int Q;
  cin >> Q;
  vector<int> l(Q), r(Q), x(Q);
  for (int i = 0; i < Q; i++){
    cin >> l[i] >> r[i] >> x[i];
    l[i]--;
  }
  vector<tuple<int, int, int, int>> query(Q);
  for (int i = 0; i < Q; i++){
    query[i] = make_tuple(l[i] / B, r[i], l[i], i);
  }
  sort(query.begin(), query.end());
  vector<int> ans(Q, INF);
  set<int> st;
  int L = 0, R = 0;
  for (int i = 0; i < Q; i++){
    int l2 = get<2>(query[i]);
    int r2 = get<1>(query[i]);
    int id = get<3>(query[i]);
    while (l2 < L){
      L--;
      st.insert(X[L]);
    }
    while (R < r2){
      st.insert(X[R]);
      R++;
    }
    while (L < l2){
      st.erase(X[L]);
      L++;
    }
    while (r2 < R){
      R--;
      st.erase(X[R]);
    }
    auto itr = st.lower_bound(x[id]);
    if (itr != st.end()){
      ans[id] = min(ans[id], *itr - x[id]);
    }
    if (itr != st.begin()){
      ans[id] = min(ans[id], x[id] - *prev(itr));
    }
  }
  for (int i = 0; i < Q; i++){
    cout << ans[i] << endl;
  }
}
0