結果
問題 | No.1332 Range Nearest Query |
ユーザー | 👑 hos.lyric |
提出日時 | 2021-01-08 21:55:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,979 bytes |
コンパイル時間 | 1,056 ms |
コンパイル使用メモリ | 105,292 KB |
実行使用メモリ | 684,476 KB |
最終ジャッジ日時 | 2024-11-16 11:24:58 |
合計ジャッジ時間 | 93,648 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
65,180 KB |
testcase_01 | AC | 42 ms
65,152 KB |
testcase_02 | AC | 43 ms
65,280 KB |
testcase_03 | MLE | - |
testcase_04 | TLE | - |
testcase_05 | MLE | - |
testcase_06 | AC | 2,164 ms
347,648 KB |
testcase_07 | MLE | - |
testcase_08 | AC | 2,042 ms
347,648 KB |
testcase_09 | MLE | - |
testcase_10 | AC | 1,936 ms
347,520 KB |
testcase_11 | MLE | - |
testcase_12 | AC | 1,992 ms
347,624 KB |
testcase_13 | MLE | - |
testcase_14 | AC | 1,911 ms
347,648 KB |
testcase_15 | MLE | - |
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 | 1,605 ms
342,272 KB |
testcase_27 | MLE | - |
testcase_28 | AC | 71 ms
59,904 KB |
testcase_29 | AC | 72 ms
59,776 KB |
testcase_30 | AC | 74 ms
59,904 KB |
testcase_31 | AC | 73 ms
59,904 KB |
testcase_32 | AC | 74 ms
59,904 KB |
testcase_33 | AC | 73 ms
59,904 KB |
testcase_34 | AC | 71 ms
60,032 KB |
testcase_35 | AC | 71 ms
59,904 KB |
testcase_36 | AC | 73 ms
59,904 KB |
testcase_37 | AC | 74 ms
59,776 KB |
testcase_38 | AC | 2,016 ms
196,736 KB |
testcase_39 | AC | 290 ms
67,072 KB |
testcase_40 | TLE | - |
testcase_41 | AC | 846 ms
104,832 KB |
testcase_42 | AC | 1,979 ms
189,312 KB |
testcase_43 | AC | 1,325 ms
137,728 KB |
testcase_44 | TLE | - |
testcase_45 | AC | 2,488 ms
238,976 KB |
testcase_46 | AC | 1,707 ms
169,728 KB |
testcase_47 | MLE | - |
ソースコード
#include <cassert> #include <cmath> #include <cstdint> #include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> #include <bitset> #include <complex> #include <deque> #include <functional> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <string> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> using namespace std; using Int = long long; template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; }; template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; } template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; } template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; } constexpr int MAX_N = 300'010; constexpr int INF = 1'000'000'000; int N; int X[MAX_N]; int segN; set<int> seg[MAX_N * 4]; int main() { for (; ~scanf("%d", &N); ) { for (int i = 0; i < N; ++i) { scanf("%d", &X[i]); } for (segN = 1; segN < N; segN <<= 1) {} for (int u = 0; u < segN << 1; ++u) { seg[u].clear(); } for (int i = 0; i < N; ++i) { for (int u = segN + i; u; u >>= 1) { seg[u].insert(X[i]); } } int Q; scanf("%d", &Q); for (; Q--; ) { int l, r, x; scanf("%d%d%d", &l, &r, &x); --l; int ans = INF; auto doIt = [&](int u) { auto it = seg[u].lower_bound(x); if (it != seg[u].end()) { chmin(ans, *it - x); } if (it != seg[u].begin()) { --it; chmin(ans, x - *it); } }; for (int a = segN + l, b = segN + r; a < b; a >>= 1, b >>= 1) { if (a & 1) doIt(a++); if (b & 1) doIt(--b); } printf("%d\n", ans); } } return 0; }