結果
問題 | No.875 Range Mindex Query |
ユーザー | kappybar |
提出日時 | 2020-04-08 14:36:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,133 bytes |
コンパイル時間 | 1,738 ms |
コンパイル使用メモリ | 177,588 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-18 12:10:15 |
合計ジャッジ時間 | 3,951 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
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 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<n;i++) using namespace std; using ll = long long ; using P = pair<int,int> ; const int INF = 1e9; const int MOD = 1000000007; struct SegmentTree { int n; vector<P> node; SegmentTree(vector<int> v){ int sz = v.size(); n = 1; while(n < sz) n *= 2; node.resize(2*n-1,P(INF,-1)); for(int i=0;i<sz;i++) node[i+n-1] = P(v[i],i); for(int i=n-2;i>=0;i--){ if(node[2*i+1].first < node[2*i+2].first){ node[i] = node[2*i+1]; }else{ node[i] = node[2*i+2]; } } } //x番目の要素をvalに変更する。 void update(int x,int val){ x += n-1; node[x].first = val; while(x > 0){ x = (x-1)/2; if(node[2*x+1].first < node[2*x+2].first){ node[x] = node[2*x+1]; }else{ node[x] = node[2*x+2]; } } } //区間[a,b)の最小値を求める P getmin(int a,int b,int k=0,int l=0,int r=-1){ if(r < 0) r = n; if(r <= a || b <= l) return P(INF,-1); if(a <= l && r <= b) return node[k]; P vl = getmin(a,b,2*k+1,l,(l+r)/2); P vr = getmin(a,b,2*k+2,(l+r)/2,r); if(vl.first < vr.first) return vl; else return vr; } }; int main(){ int n,q; cin >> n >> q; vector<int> a(n); rep(i,n) cin >> a[i]; SegmentTree seg(a); rep(i,q){ int c,l,r; cin >> c >> l >> r; --l;--r; if(c==1){ int res = seg.node[l].first; seg.update(l,seg.node[r].first); seg.update(r,res); }else{ cout << seg.getmin(l,r+1).second+1 << endl; } } return 0; }