結果
問題 | No.2223 Merged Med |
ユーザー | stoq |
提出日時 | 2023-02-16 06:28:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 870 ms / 7,000 ms |
コード長 | 2,763 bytes |
コンパイル時間 | 2,891 ms |
コンパイル使用メモリ | 225,204 KB |
実行使用メモリ | 48,896 KB |
最終ジャッジ日時 | 2024-07-19 11:52:27 |
合計ジャッジ時間 | 16,155 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 265 ms
14,328 KB |
testcase_14 | AC | 112 ms
5,376 KB |
testcase_15 | AC | 218 ms
47,488 KB |
testcase_16 | AC | 623 ms
46,208 KB |
testcase_17 | AC | 141 ms
31,104 KB |
testcase_18 | AC | 100 ms
5,376 KB |
testcase_19 | AC | 218 ms
12,032 KB |
testcase_20 | AC | 794 ms
48,768 KB |
testcase_21 | AC | 851 ms
48,640 KB |
testcase_22 | AC | 841 ms
48,768 KB |
testcase_23 | AC | 825 ms
48,768 KB |
testcase_24 | AC | 853 ms
48,768 KB |
testcase_25 | AC | 837 ms
48,768 KB |
testcase_26 | AC | 818 ms
48,768 KB |
testcase_27 | AC | 786 ms
48,768 KB |
testcase_28 | AC | 851 ms
48,768 KB |
testcase_29 | AC | 870 ms
48,768 KB |
testcase_30 | AC | 89 ms
48,768 KB |
testcase_31 | AC | 88 ms
48,896 KB |
testcase_32 | AC | 11 ms
5,376 KB |
testcase_33 | AC | 478 ms
48,768 KB |
testcase_34 | AC | 382 ms
48,640 KB |
testcase_35 | AC | 385 ms
48,640 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < int(n); i++) // https://ei1333.github.io/luzhiled/snippets/structure/segment-tree.html template <typename Monoid> struct PersistentSegmentTree { using F = function<Monoid(Monoid, Monoid)>; struct Node { Monoid data; Node *l, *r; Node(const Monoid &data) : data(data), l(nullptr), r(nullptr) {} }; int sz; const F f; const Monoid M1; PersistentSegmentTree(const F f, const Monoid &M1) : f(f), M1(M1) {} Node *build(vector<Monoid> &v) { sz = (int)v.size(); return build(0, (int)v.size(), v); } Node *merge(Node *l, Node *r) { auto t = new Node(f(l->data, r->data)); t->l = l; t->r = r; return t; } Node *build(int l, int r, vector<Monoid> &v) { if (l + 1 >= r) return new Node(v[l]); return merge(build(l, (l + r) >> 1, v), build((l + r) >> 1, r, v)); } Node *update(int a, const Monoid &x, Node *k, int l, int r) { if (r <= a || a + 1 <= l) { return k; } else if (a <= l && r <= a + 1) { return new Node(x); } else { return merge(update(a, x, k->l, l, (l + r) >> 1), update(a, x, k->r, (l + r) >> 1, r)); } } Node *update(Node *t, int k, const Monoid &x) { return update(k, x, t, 0, sz); } Monoid query(int a, int b, Node *k, int l, int r) { if (r <= a || b <= l) { return M1; } else if (a <= l && r <= b) { return k->data; } else { return f(query(a, b, k->l, l, (l + r) >> 1), query(a, b, k->r, (l + r) >> 1, r)); } } Monoid query(Node *t, int a, int b) { return query(a, b, t, 0, sz); } }; struct S { int lmax, rmax, max, sum; S(int a = 0) { lmax = rmax = max = sum = a; } }; S op(S s, S t) { S res; res.lmax = max(s.lmax, s.sum + t.lmax); res.rmax = max(t.rmax, s.rmax + t.sum); res.max = max({s.max, t.max, s.rmax + t.lmax}); res.sum = s.sum + t.sum; return res; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n, q; cin >> n >> q; vector<int> a(n); rep(i, n) cin >> a[i], a[i]--; vector<pair<int, int>> p(n); rep(i, n) p[i] = {a[i], i}; sort(begin(p), end(p)); PersistentSegmentTree<S> seg(op, S(0)); vector<S> init(n, S(1)); vector<PersistentSegmentTree<S>::Node *> roots(n + 1); roots[0] = seg.build(init); rep(i, n) { roots[i + 1] = seg.update(roots[i], p[i].second, S(-1)); } rep(_, q) { int l, r; cin >> l >> r; l--; int lo = -1, hi = n + 1; while (hi - lo > 1) { int mi = (lo + hi) / 2; S s = seg.query(roots[mi], l, r); if (s.sum < 0 or s.sum - s.max + 1 < 0) hi = mi; else lo = mi; } cout << p[hi - 1].first + 1 << "\n"; } }