結果

問題 No.1332 Range Nearest Query
ユーザー SSRSSSRS
提出日時 2021-01-08 22:03:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,441 bytes
コンパイル時間 3,339 ms
コンパイル使用メモリ 203,336 KB
実行使用メモリ 33,920 KB
最終ジャッジ日時 2024-11-16 11:56:28
合計ジャッジ時間 112,248 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
24,960 KB
testcase_02 AC 2 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 163 ms
26,880 KB
testcase_27 AC 165 ms
27,008 KB
testcase_28 AC 42 ms
11,776 KB
testcase_29 AC 41 ms
27,520 KB
testcase_30 AC 43 ms
11,776 KB
testcase_31 AC 34 ms
15,616 KB
testcase_32 AC 43 ms
11,648 KB
testcase_33 AC 44 ms
17,280 KB
testcase_34 AC 40 ms
11,776 KB
testcase_35 AC 42 ms
11,776 KB
testcase_36 AC 42 ms
11,776 KB
testcase_37 AC 42 ms
22,912 KB
testcase_38 TLE -
testcase_39 AC 2,026 ms
19,584 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 #

#pragma GCC target("avx2")
#pragma GCC optimize("unroll-loops")
#pragma GCC optimize("O3")
#include <bits/stdc++.h>
using namespace std;
const int B = 550;
const int INF = 1000000000;
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  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++){
    if (l[i] / B % 2 == 0){
      query[i] = make_tuple(l[i] / B, r[i], l[i], i);
    } else {
      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 = abs(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] << "\n";
  }
}
0