結果
問題 | No.1332 Range Nearest Query |
ユーザー | Kude |
提出日時 | 2021-01-08 23:06:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,706 bytes |
コンパイル時間 | 2,334 ms |
コンパイル使用メモリ | 213,292 KB |
実行使用メモリ | 33,152 KB |
最終ジャッジ日時 | 2024-11-16 15:27:46 |
合計ジャッジ時間 | 97,216 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
23,680 KB |
testcase_02 | AC | 2 ms
10,624 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | AC | 1,761 ms
16,384 KB |
testcase_07 | AC | 1,826 ms
31,104 KB |
testcase_08 | AC | 1,679 ms
16,384 KB |
testcase_09 | AC | 1,831 ms
31,232 KB |
testcase_10 | AC | 1,750 ms
16,384 KB |
testcase_11 | AC | 1,598 ms
31,104 KB |
testcase_12 | AC | 1,602 ms
16,384 KB |
testcase_13 | AC | 1,614 ms
31,360 KB |
testcase_14 | AC | 1,616 ms
16,256 KB |
testcase_15 | AC | 1,826 ms
31,104 KB |
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 | 200 ms
25,856 KB |
testcase_27 | AC | 225 ms
33,152 KB |
testcase_28 | AC | 30 ms
10,624 KB |
testcase_29 | AC | 30 ms
25,088 KB |
testcase_30 | AC | 29 ms
10,624 KB |
testcase_31 | AC | 26 ms
17,792 KB |
testcase_32 | AC | 29 ms
10,624 KB |
testcase_33 | AC | 31 ms
21,888 KB |
testcase_34 | AC | 28 ms
10,624 KB |
testcase_35 | AC | 28 ms
20,608 KB |
testcase_36 | AC | 28 ms
10,624 KB |
testcase_37 | AC | 30 ms
17,024 KB |
testcase_38 | TLE | - |
testcase_39 | AC | 94 ms
5,760 KB |
testcase_40 | TLE | - |
testcase_41 | AC | 669 ms
8,064 KB |
testcase_42 | TLE | - |
testcase_43 | AC | 1,938 ms
9,728 KB |
testcase_44 | TLE | - |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
testcase_47 | TLE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (n); ++i) #define rrep(i,n) for(int i = (n)-1; i >= 0; --i) #define chmax(a, b) a = max(a, b) template<class T> void chmin(T& a, const T& b) { a = min<T>(a, b); } #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; struct Q { int i; int l, r, x; bool operator<(Q& y) { int bx = l / 550, by = y.l / 550; return (bx < by) || (bx == by && r < y.r); } }; int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; VI x(n); rep(i, n) cin >> x[i]; int q; cin >> q; vector<Q> qs(q); rep(i, q) { qs[i].i = i; cin >> qs[i].l >> qs[i].r >> qs[i].x; qs[i].l--; } sort(all(qs)); int cur_b = -1, blast = -1; VI ans(q); set<int> s; int p = -1; rep(i, q) { int l = qs[i].l, r = qs[i].r, z = qs[i].x; int b = l / 550; if (b != cur_b) { cur_b = b; s.clear(); blast = 550 * (b + 1); p = blast; } while(p < r) s.insert(x[p++]); auto it = s.lower_bound(z); int tans = 1001001001; if (it != s.end()) { chmin(tans, *it - z); } if (it != s.begin()) { it--; chmin(tans, z - *it); } for(int j = min({blast, n, r}) - 1; j >= l; --j) { chmin(tans, abs(x[j] - z)); } ans[qs[i].i] = tans; } rep(i, q) cout << ans[i] << '\n'; }