結果
問題 | No.1332 Range Nearest Query |
ユーザー | vwxyz |
提出日時 | 2024-08-15 05:56:12 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,428 bytes |
コンパイル時間 | 3,325 ms |
コンパイル使用メモリ | 258,208 KB |
実行使用メモリ | 38,256 KB |
最終ジャッジ日時 | 2024-08-15 05:56:27 |
合計ジャッジ時間 | 13,675 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 164 ms
38,256 KB |
testcase_07 | AC | 163 ms
37,732 KB |
testcase_08 | AC | 153 ms
36,076 KB |
testcase_09 | AC | 175 ms
35,596 KB |
testcase_10 | AC | 157 ms
37,804 KB |
testcase_11 | AC | 155 ms
36,188 KB |
testcase_12 | AC | 153 ms
35,524 KB |
testcase_13 | AC | 158 ms
36,456 KB |
testcase_14 | AC | 160 ms
35,424 KB |
testcase_15 | AC | 161 ms
37,888 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 | AC | 162 ms
35,844 KB |
testcase_27 | AC | 134 ms
35,192 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 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/segtree> using namespace std; using namespace atcoder; struct Query { int value, left, right, index; bool operator<(const Query& other) const { return value < other.value; } }; int op(int a, int b) { return max(a, b); } int e() { return -1e9; // effectively negative infinity } int 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, INT_MAX); 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; }