結果
問題 | No.1332 Range Nearest Query |
ユーザー | vwxyz |
提出日時 | 2024-08-15 06:00:55 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,468 bytes |
コンパイル時間 | 3,609 ms |
コンパイル使用メモリ | 259,428 KB |
実行使用メモリ | 70,324 KB |
最終ジャッジ日時 | 2024-08-15 06:01:11 |
合計ジャッジ時間 | 15,284 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 197 ms
68,624 KB |
testcase_07 | AC | 202 ms
69,044 KB |
testcase_08 | AC | 186 ms
68,976 KB |
testcase_09 | AC | 191 ms
68,552 KB |
testcase_10 | AC | 188 ms
68,504 KB |
testcase_11 | AC | 189 ms
68,632 KB |
testcase_12 | AC | 198 ms
68,480 KB |
testcase_13 | AC | 189 ms
68,452 KB |
testcase_14 | AC | 186 ms
67,496 KB |
testcase_15 | AC | 191 ms
67,868 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 172 ms
68,284 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 167 ms
42,084 KB |
testcase_39 | AC | 90 ms
18,368 KB |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 135 ms
32,908 KB |
testcase_44 | WA | - |
testcase_45 | AC | 204 ms
50,248 KB |
testcase_46 | AC | 162 ms
36,708 KB |
testcase_47 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/segtree> using namespace std; using namespace atcoder; #define int long long struct Query { int value, left, right, index; bool operator<(const Query& other) const { return value < other.value; } }; int inf=1ll<<60; int op(int a, int b) { return max(a, b); } int e() { return -inf; // effectively negative infinity } signed main() { ios::sync_with_stdio(false); cin.tie(0); int N; cin >> N; vector<int> X(N); for (int i = 0; i < N; ++i) { cin >> X[i]; } int Q; cin >> Q; vector<Query> query0, query1; vector<int> ans(Q, inf); for (int i = 0; i < N; ++i) { query0.push_back({X[i], -1, -1, i}); query1.push_back({-X[i], -1, -1, i}); } for (int i = 0; i < Q; ++i) { int l, r, x; cin >> l >> r >> x; --l; query0.push_back({x, l, r, i}); query1.push_back({-x, l, r, i}); } sort(query0.begin(), query0.end()); sort(query1.begin(), query1.end()); for (auto& query : {query0, query1}) { segtree<int, op, e> seg(N); for (auto& q : query) { if (q.left == -1) { seg.set(q.index, q.value); } else { ans[q.index] = min(ans[q.index], q.value - seg.prod(q.left, q.right)); } } } for (int i = 0; i < Q; ++i) { cout << ans[i] << "\n"; } return 0; }