結果
問題 | No.875 Range Mindex Query |
ユーザー | gasin |
提出日時 | 2019-09-07 12:59:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 301 ms / 2,000 ms |
コード長 | 1,785 bytes |
コンパイル時間 | 765 ms |
コンパイル使用メモリ | 72,984 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 08:41:31 |
合計ジャッジ時間 | 3,468 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 211 ms
5,376 KB |
testcase_12 | AC | 172 ms
5,376 KB |
testcase_13 | AC | 150 ms
5,376 KB |
testcase_14 | AC | 146 ms
5,376 KB |
testcase_15 | AC | 200 ms
5,376 KB |
testcase_16 | AC | 273 ms
5,376 KB |
testcase_17 | AC | 301 ms
5,376 KB |
testcase_18 | AC | 279 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <string> #include <vector> #include <map> #include <queue> #include <cstdio> #include <string.h> #define rep(i,n) for (int i = 0; i < (int)n; i++) using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> pi; typedef pair<pi, pi> pp; typedef pair<ll, ll> pl; double PI = 3.1415926535897932; const double EPS = 1e-9; const ll MOD = 1000000007; const int inf = 1 << 30; const ll linf = 1LL << 60; // 区間最小値、要素更新のsegtree template<typename T> struct segtree{ int n; vector<T> dat; T unit; void init(int n_, T unit_) { unit = unit_; n = 1; while(n < n_) n *= 2; dat.assign(2*n-1, unit); } void update(int k, T a){ k += n-1; dat[k] = a; while(k > 0){ k = (k-1)/2; dat[k] = min(dat[k*2+1], dat[k*2+2]); } } //(a,b,0,0,seg.n)で呼ぶ T query(int a, int b, int k, int l, int r){ if(r <= a || b <= l) return unit; if(a <= l && r <= b) return dat[k]; else{ T vl = query(a,b,k*2+1,l,(l+r)/2); T vr = query(a,b,k*2+2,(l+r)/2,r); return min(vl, vr); } } }; int n, q; segtree<pi> seg; int main() { cin >> n >> q; seg.init(n, pi(inf,inf)); rep(i,n) { int a; cin >> a; seg.update(i, pi(a,i)); } rep(i,q) { int f, l, r; cin >> f >> l >> r; l--; r--; if (f == 1) { pi lv = seg.dat[seg.n-1+l], rv = seg.dat[seg.n-1+r]; seg.update(l, pi(rv.first,l)); seg.update(r, pi(lv.first,r)); } else { cout << seg.query(l, r+1, 0, 0, seg.n).second + 1 << endl; } } }