結果
問題 | No.1332 Range Nearest Query |
ユーザー | hir355 |
提出日時 | 2021-01-08 23:07:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,302 bytes |
コンパイル時間 | 2,240 ms |
コンパイル使用メモリ | 189,768 KB |
実行使用メモリ | 16,628 KB |
最終ジャッジ日時 | 2024-11-16 15:31:42 |
合計ジャッジ時間 | 23,495 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 436 ms
11,848 KB |
testcase_04 | WA | - |
testcase_05 | AC | 416 ms
11,980 KB |
testcase_06 | AC | 373 ms
16,496 KB |
testcase_07 | AC | 379 ms
16,504 KB |
testcase_08 | AC | 385 ms
16,500 KB |
testcase_09 | AC | 375 ms
16,500 KB |
testcase_10 | AC | 381 ms
16,376 KB |
testcase_11 | AC | 395 ms
16,456 KB |
testcase_12 | AC | 373 ms
16,496 KB |
testcase_13 | AC | 377 ms
16,500 KB |
testcase_14 | AC | 374 ms
16,504 KB |
testcase_15 | AC | 368 ms
16,496 KB |
testcase_16 | AC | 433 ms
16,504 KB |
testcase_17 | AC | 446 ms
16,500 KB |
testcase_18 | AC | 445 ms
16,372 KB |
testcase_19 | AC | 446 ms
16,500 KB |
testcase_20 | AC | 444 ms
16,500 KB |
testcase_21 | WA | - |
testcase_22 | AC | 457 ms
16,500 KB |
testcase_23 | AC | 438 ms
16,372 KB |
testcase_24 | AC | 431 ms
16,500 KB |
testcase_25 | WA | - |
testcase_26 | AC | 365 ms
16,376 KB |
testcase_27 | AC | 326 ms
16,368 KB |
testcase_28 | AC | 186 ms
5,248 KB |
testcase_29 | AC | 189 ms
5,248 KB |
testcase_30 | AC | 187 ms
5,248 KB |
testcase_31 | AC | 186 ms
5,248 KB |
testcase_32 | AC | 192 ms
5,248 KB |
testcase_33 | AC | 190 ms
5,248 KB |
testcase_34 | AC | 190 ms
5,248 KB |
testcase_35 | AC | 192 ms
5,248 KB |
testcase_36 | AC | 186 ms
5,248 KB |
testcase_37 | AC | 188 ms
5,248 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 438 ms
16,428 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 355 ms
10,936 KB |
ソースコード
#include <atcoder/segtree> #include <bits/stdc++.h> using namespace std; using namespace atcoder; #define INF_LL 100000000000000000LL #define INF 2000000000 #define MOD 1000000007 #define ll long long #define all(x) x.begin(), x.end() #define REP(i, a, b) for(int i = a; i < b; i++) #define rep(i, n) REP(i, 0, n) // typedef float double; // typedef priority_queue prique; typedef pair<ll, ll> P; typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<P> vp; typedef vector<ll> vl; typedef vector<vi> matrix; int dx[4] = {0, 1, 0, -1}; int dy[4] = {1, 0, -1, 0}; int sign[2] = {1, -1}; template <class T> bool chmax(T &a, T b) { if(a < b) { a = b; return 1; } return 0; } template <class T> bool chmin(T &a, T b) { if(a > b) { a = b; return 1; } return 0; } ll modpow(ll a, ll b, ll m) { if(b == 0) return 1; ll t = modpow(a, b / 2, m); if(b & 1) { return (t * t % m) * a % m; } else { return t * t % m; } } struct edge { int to; ll cost; edge(int t, ll c) { to = t, cost = c; } }; typedef vector<vector<edge>> graph; // using mint = modint998244353; int minop(int x, int y) {return min(x, y);} int maxop(int x, int y) {return max(x, y);} int mine() {return INF;} int maxe() {return -INF;} int main() { int n, q; cin >> n; vector<pair<int, int>> a(n); rep(i, n) {cin >> a[i].first;a[i].second = i;} segtree<int, maxop, maxe> seg1(n); segtree<int, minop, mine> seg2(n); rep(i, n) seg2.set(i, a[i].first); sort(all(a)); cin >> q; vector<tuple<int, int, int, int>> query(q); rep(i, q){ int l, r, x; cin >> l >> r >> x; query[i] = {x, l, r, i}; } sort(all(query)); int idx = 0; rep(i, q){ int x, l, r, g; tie(x, l, r, g) = query[i]; while(idx < n && x > a[idx].first){ seg1.set(a[idx].second, seg2.get(a[idx].second)); seg2.set(a[idx].second, mine()); idx++; } get<0>(query[i]) = min(seg2.prod(l - 1, r) - x, x - seg1.prod(l - 1, r)); } sort(begin(query), end(query), [](const auto &x, const auto &y){return get<3>(x) < get<3>(y);}); rep(i, q){ cout << get<0>(query[i]) << endl; } return 0; }