結果
問題 | No.875 Range Mindex Query |
ユーザー | suika_p |
提出日時 | 2019-09-06 22:53:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,784 bytes |
コンパイル時間 | 1,935 ms |
コンパイル使用メモリ | 175,520 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 20:27:24 |
合計ジャッジ時間 | 4,710 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 260 ms
6,912 KB |
testcase_17 | AC | 279 ms
6,912 KB |
testcase_18 | AC | 272 ms
6,912 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i, m, n) for (int i = (m); i < (int)(n); i++) #define rep(i, n) REP(i, 0, n) int const inf = INT_MAX; struct SegmentTree { private: int n; vector<pair<int, int>> node; public: SegmentTree(vector<pair<int, int>> v) { int sz = v.size(); n = 1; // 2の累乗の大きさにする while (n < sz) n *= 2; // 余りをinfで埋める //node.resize(2*n-1, inf); node.resize(2*n-1); rep(i, 2*n-1) { node[i].first = inf; node[i].second = n; } // 葉を構築 for (int i = 0; i < sz; i++) { node[i+n-1].first = v[i].first; node[i+n-1].second = v[i].second; } // 親を構築 for (int i = n - 2; i >= 0; i--) { if (node[2*i+1].first < node[2*i+2].first) { node[i].first = node[2*i+1].first; node[i].second = node[2*i+1].second; } else { node[i].first = node[2*i+2].first; node[i].second = node[2*i+2].second; } //node[i].first = min(node[2*i+1].first, node[2*i+2].first); } } void update(int x, int val, int ind) { x += (n - 1); node[x].first = val; node[x].second = ind; while (x > 0) { x = (x - 1) / 2; if (node[2*x+1].first < node[2*x+2].first) { node[x].first = node[2*x+1].first; node[x].second = node[2*x+1].second; } else { node[x].first = node[2*x+2].first; node[x].second = node[2*x+2].second; } //node[x].first = min(node[2*x+1].first, node[2*x+2].first); } } pair<int, int> getmin(int a, int b, int k = 0, int l = 0, int r = -1) { if (r < 0) r = n; if (r <= a || b <= l) { pair<int, int> c = make_pair(inf, n); return c; } if (a <= l && r <= b) return node[k]; pair<int, int> vl = getmin(a, b, 2*k+1, l, (l+r) / 2); pair<int, int> vr = getmin(a, b, 2*k+2, (l+r) / 2, r); if (vl.first > vr.first) { return vr; } else { return vl; } } }; int main() { int N, Q; cin >> N >> Q; vector<pair<int, int>> a(N); rep(i, N) { int x; cin >> x; a[i] = make_pair(x, i+1); } SegmentTree seg(a); rep(_, Q) { int k, l, r; cin >> k >> l >> r; if (k == 1) { seg.update(l-1, a[r-1].first, l); seg.update(r-1, a[l-1].first, r); } else { pair<int, int> z = seg.getmin(l-1, r); cout << z.second << endl; } } return 0; }