結果
問題 | No.875 Range Mindex Query |
ユーザー | toyama |
提出日時 | 2019-09-06 21:32:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 279 ms / 2,000 ms |
コード長 | 2,469 bytes |
コンパイル時間 | 809 ms |
コンパイル使用メモリ | 89,212 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 16:57:43 |
合計ジャッジ時間 | 3,500 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
6,816 KB |
testcase_01 | AC | 4 ms
6,940 KB |
testcase_02 | AC | 5 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,944 KB |
testcase_04 | AC | 4 ms
6,940 KB |
testcase_05 | AC | 4 ms
6,940 KB |
testcase_06 | AC | 4 ms
6,940 KB |
testcase_07 | AC | 5 ms
6,940 KB |
testcase_08 | AC | 4 ms
6,940 KB |
testcase_09 | AC | 4 ms
6,940 KB |
testcase_10 | AC | 5 ms
6,944 KB |
testcase_11 | AC | 201 ms
6,940 KB |
testcase_12 | AC | 172 ms
6,940 KB |
testcase_13 | AC | 144 ms
6,944 KB |
testcase_14 | AC | 144 ms
6,944 KB |
testcase_15 | AC | 199 ms
6,940 KB |
testcase_16 | AC | 259 ms
6,944 KB |
testcase_17 | AC | 279 ms
6,940 KB |
testcase_18 | AC | 272 ms
6,944 KB |
ソースコード
#include <iostream> #include <cstdio> #include <cstdlib> #include <cmath> #include <functional> #include <algorithm> #include <string> #include <vector> #include <set> #include <map> #include <queue> #include <stack> using namespace std; template<class T, class Compare = less<T> > using MaxHeap = priority_queue<T, vector<T>, Compare>; template<class T, class Compare = greater<T> > using MinHeap = priority_queue<T, vector<T>, Compare>; using llong = long long; //=== template<typename Monoid> struct SegmentTree { using OP = function<Monoid(Monoid, Monoid)>; vector<Monoid> tree; int size; const OP f; // bin' operation const Monoid e; // neutral element SegmentTree(int nmemb, const Monoid &e, const OP &f): f(f), e(e) { size = 1; while (size < nmemb) { size *= 2; } tree.assign(2 * size - 1, e); } void update(int k, Monoid dat) { k += size - 1; tree[k] = dat; while(k > 0) { k = (k - 1) / 2; tree[k] = f(tree[2 * k + 1], tree[2 * k + 2]); } } // [l, r) Monoid query(int l, int r) { l += size - 1; r += size - 1; Monoid d = e; while (l < r) { if (l % 2 == 0) { d = f(d, tree[l]); l++; } if (r % 2 == 0) { r--; d = f(d, tree[r]); } l = (l - 1) / 2; r = (r - 1) / 2; } return d; } Monoid operator[] (const int k) { return query(k, k + 1); } }; //=== struct P { int v; int idx; P(int v, int idx): v(v), idx(idx) {}; bool operator < (const P &r) const { return this->v < r.v; }; }; int n, q; int com, l, r; SegmentTree<P> seg(100005, P(1 << 29, 0), [](auto l, auto r){ return min(l, r); }); int main() { cin >> n >> q; for (int i = 0; i < n; i++) { int v; cin >> v; seg.update(i, P(v, i + 1)); } for (int i = 0; i < q; i++) { cin >> com >> l >> r; r--; l--; if (com == 1) { P a = seg[l]; P b = seg[r]; seg.update(l, P(b.v, a.idx)); seg.update(r, P(a.v, b.idx)); } else if (com == 2) { P a = seg.query(l, r + 1); cout << a.idx << endl; } } return 0; }