結果
問題 | No.875 Range Mindex Query |
ユーザー | hornistyf |
提出日時 | 2020-01-05 18:05:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,406 bytes |
コンパイル時間 | 801 ms |
コンパイル使用メモリ | 91,680 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-02 10:09:04 |
合計ジャッジ時間 | 6,413 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 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 | 2 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 | RE | - |
testcase_12 | TLE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
ソースコード
//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[2*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); for (int i=0;i<n;i++){ int temp; cin >> temp; update(i,temp); } 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); for (int i=0;i<n;i++){ if (seg[nodenum-1+i]==ans){ cout << i+1 << endl; } } }else { int templ = seg[l+nodenum-1]; int tempr = seg[r+nodenum-1]; update(l,tempr); update(r,templ); } } }