結果
問題 | No.875 Range Mindex Query |
ユーザー | hornistyf |
提出日時 | 2020-01-05 18:26:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 298 ms / 2,000 ms |
コード長 | 1,494 bytes |
コンパイル時間 | 782 ms |
コンパイル使用メモリ | 98,472 KB |
実行使用メモリ | 9,088 KB |
最終ジャッジ日時 | 2024-05-02 10:09:33 |
合計ジャッジ時間 | 3,641 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 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 | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 230 ms
7,936 KB |
testcase_12 | AC | 187 ms
6,784 KB |
testcase_13 | AC | 172 ms
8,960 KB |
testcase_14 | AC | 169 ms
8,576 KB |
testcase_15 | AC | 228 ms
8,960 KB |
testcase_16 | AC | 279 ms
8,960 KB |
testcase_17 | AC | 298 ms
8,960 KB |
testcase_18 | AC | 291 ms
9,088 KB |
ソースコード
//yuki875.cpp //Sun Jan 5 17:24:15 2020 #include <iostream> #include <string> #include <queue> #include <map> #include <unordered_map> #include <vector> #include <algorithm> #include <math.h> #include <set> #define INTINF 2147483647 #define LLINF 9223372036854775807 using namespace std; using ll=long long; typedef pair<int,int> P; int seg[4*100000]; int nodenum; void init(int n){ nodenum = 1; while (nodenum<n){ nodenum *= 2; } for (int i=0;i<nodenum*2-1;i++){ seg[i] = INTINF; } } void update(int index, int num){ index += nodenum-1; seg[index] = num; while (index>0){ index = (index-1)/2; seg[index] = min(seg[index*2+1],seg[index*2+2]); } } //Note that query is [a,b). int query(int a, int b, int k, int l, int r){ if (r<=a || b<=l){ return INTINF; } if (a<=l && r<=b){ return seg[k]; }else { int vl = query(a,b,k*2+1,l,(l+r)/2); int vr = query(a,b,k*2+2,(l+r)/2,r); return min(vl,vr); } } int main(){ int n,q; cin >> n >> q; init(n); map<int,int> mp; for (int i=0;i<n;i++){ int temp; cin >> temp; seg[nodenum-1+i]=temp; mp[temp] = i; } for (int i=nodenum-2;i>=0;i--){ seg[i] = min(seg[i*2+1],seg[i*2+2]); } for (int i=0;i<q;i++){ int num,l,r; cin >> num >> l >> r; l--;r--; if (num==2){ int ans = query(l,r+1,0,0,nodenum); cout << mp[ans]+1 << endl; }else { int templ = seg[l+nodenum-1]; int tempr = seg[r+nodenum-1]; update(l,tempr); update(r,templ); mp[templ] = r; mp[tempr] = l; } } }