結果
問題 | No.875 Range Mindex Query |
ユーザー | tone |
提出日時 | 2019-09-18 13:57:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 246 ms / 2,000 ms |
コード長 | 1,659 bytes |
コンパイル時間 | 797 ms |
コンパイル使用メモリ | 80,592 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-08 02:24:09 |
合計ジャッジ時間 | 3,143 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,940 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 4 ms
6,944 KB |
testcase_11 | AC | 167 ms
6,940 KB |
testcase_12 | AC | 141 ms
6,940 KB |
testcase_13 | AC | 121 ms
6,940 KB |
testcase_14 | AC | 118 ms
6,940 KB |
testcase_15 | AC | 161 ms
6,944 KB |
testcase_16 | AC | 232 ms
6,940 KB |
testcase_17 | AC | 246 ms
6,940 KB |
testcase_18 | AC | 239 ms
6,940 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <deque> #include <queue> #include <algorithm> #include <set> #include <map> #define vv(a, b, c, d) vector<vector<d> >(a, vector<d>(b, c)) #define vvi std::vector<std::vector<int> > #define vvl std::vector<std::vector<ll> > #define MODs 1000000007; typedef long long int ll; using namespace std; //------------------------------------------------------------------- int M=1, INF=1000000007; std::vector<int> idx(100001, -1); std::vector<int> seg; void init(int N){ while(M<N) M*=2; M=M*2-1; for(int i=0;i<M;i++) { seg.push_back(INF); } } void update(int l, int r, int x, int k){ k+=(M+1)/2-1; seg[k] = x; while(k>0){ k = (k-1)/2; seg[k] = min(seg[k*2+1], seg[k*2+2]); } } ll query(int a, int b, int l, int r, int k){ if(r<=a || b<=l) return INF; if(a<=l && r<=b) return seg[k]; ll A = query(a, b, l, (l+r)/2, k*2+1); ll B = query(a, b, (l+r)/2, r, k*2+2); return min(A, B); } //------------------------------------------------------------------- int main(int argc, char const *argv[]) { int N, Q, a, b, c; std::cin >> N >> Q; init(N+1); for(int i=0;i<N;i++){ std::cin >> a; idx[a] = i+1; update(0, (M+1)/2, a, i); } for(int i=0;i<Q;i++){ std::cin >> a >> b >> c; b--,c--; if(a==1){ int tmp = seg[b+(M+1)/2-1], tmpidx=idx[seg[b+(M+1)/2-1]]; int tmp2 = seg[c+(M+1)/2-1], tmpidx2=idx[seg[c+(M+1)/2-1]]; idx[tmp] = tmpidx2, idx[tmp2] = tmpidx; update(0, (M+1)/2, tmp2, b), update(0, (M+1)/2, tmp, c); }else { std::cout << idx[query(b, c+1, 0, (M+1)/2, 0)] << '\n'; } } return 0; }