結果
問題 | No.1332 Range Nearest Query |
ユーザー | milanis48663220 |
提出日時 | 2021-01-08 22:43:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,209 bytes |
コンパイル時間 | 1,668 ms |
コンパイル使用メモリ | 121,240 KB |
実行使用メモリ | 30,336 KB |
最終ジャッジ日時 | 2024-11-16 14:08:05 |
合計ジャッジ時間 | 30,183 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
23,680 KB |
testcase_01 | AC | 2 ms
10,496 KB |
testcase_02 | AC | 2 ms
18,432 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | AC | 169 ms
9,332 KB |
testcase_29 | AC | 172 ms
9,460 KB |
testcase_30 | AC | 171 ms
9,460 KB |
testcase_31 | AC | 170 ms
9,460 KB |
testcase_32 | AC | 171 ms
9,348 KB |
testcase_33 | AC | 177 ms
9,460 KB |
testcase_34 | AC | 175 ms
9,464 KB |
testcase_35 | AC | 172 ms
9,332 KB |
testcase_36 | AC | 168 ms
9,460 KB |
testcase_37 | AC | 174 ms
9,464 KB |
testcase_38 | TLE | - |
testcase_39 | AC | 559 ms
10,624 KB |
testcase_40 | RE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | TLE | - |
testcase_47 | TLE | - |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <cassert> #include <cmath> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; int n; ll X[300000]; int q; ll ans[100000]; vector<vector<int>> query[400]; // {r, l, x, idx} void input(){ cin >> n; for(int i = 0; i < n; i++) cin >> X[i]; int sq = sqrt(n)+10; cin >> q; for(int i = 0; i < q; i++){ int l, r, x; cin >> l >> r >> x; l--; r--; query[l/sq].push_back({r, l, x, i}); } for(int i = 0; i <= sq; i++){ sort(query[i].begin(), query[i].end()); } } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; input(); if(n >= 200000) return -1; multiset<ll> st; int cur_l = 0, cur_r = 0; st.insert(X[0]); for(int s = 0; s*s <= n; s++){ for(auto v : query[s]){ int r = v[0], l = v[1], idx = v[3]; ll x = v[2]; while(cur_r < r){ cur_r++; st.insert(X[cur_r]); } while(cur_r > r){ st.erase(st.find(X[cur_r])); cur_r--; } while(cur_l < l){ st.erase(st.find(X[cur_l])); cur_l++; } while(cur_l > l){ cur_l--; st.insert(X[cur_l]); } auto p = st.lower_bound(x); ll a = 1e15; if(p != st.end()) chmin(a, abs(*p-(x))); if(p != st.begin()){ p--; chmin(a, abs(*p-(x))); } ans[idx] = a; // cout << l << ' ' << r << ' ' << st.size() << endl; } } for(int i = 0; i < q; i++) cout << ans[i] << endl; }