結果
問題 | No.875 Range Mindex Query |
ユーザー | Imperi_Night |
提出日時 | 2019-09-07 00:22:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 119 ms / 2,000 ms |
コード長 | 2,344 bytes |
コンパイル時間 | 942 ms |
コンパイル使用メモリ | 105,716 KB |
実行使用メモリ | 7,388 KB |
最終ジャッジ日時 | 2024-06-24 22:48:25 |
合計ジャッジ時間 | 2,748 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 119 ms
7,388 KB |
testcase_12 | AC | 95 ms
6,944 KB |
testcase_13 | AC | 89 ms
7,148 KB |
testcase_14 | AC | 85 ms
7,152 KB |
testcase_15 | AC | 115 ms
7,344 KB |
testcase_16 | AC | 96 ms
7,352 KB |
testcase_17 | AC | 106 ms
7,328 KB |
testcase_18 | AC | 100 ms
7,272 KB |
ソースコード
#include <assert.h> #include <limits.h> #include <algorithm> #include <bitset> #include <cctype> #include <cmath> #include <complex> #include <deque> #include <functional> #include <iomanip> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <stack> #include <string> #include <vector> using ll = long long; using P = std::pair<ll, ll>; #define rep(i, a, b) for (ll(i) = (a); i < (b); i++) #define all(i) i.begin(), i.end() #define debug(i) std::cerr << "debug "<< i << std::endl // const ll MOD = 998244353; const ll MOD = 1e9 + 7; //最大値セグ木 0-indexed 初期値はminで指定 template <class T> class SegmentTree { private: long long n; T init; std::vector<T> dat; std::function<T(T, T)> fn; public: SegmentTree(long long i, T para, std::function<T(T, T)> fun) : init(para), fn(fun) { n = 1; while (n < i) { n *= 2; } dat = std::vector<T>(2 * n - 1, init); } // k番目(0-indexed)を値aで更新,dest=trueのときは更新前を破壊して初期化する void update(long long k, T a, bool dest) { k += n - 1; if (dest) dat[k] = a; else dat[k] = fn(dat[k], a); while (k > 0) { k = (k - 1) / 2; dat[k] = fn(dat[k * 2 + 1], dat[k * 2 + 2]); } } T query(long long a, long long b, long long k, long long l, long long r) { if (r <= a || b <= l) { return init; } 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 fn(vl, vr); } } //[a,b)での最大値を返す T query(long long a, long long b) { return query(a, b, 0, 0, n); } }; int main() { std::cin.tie(0); std::ios::sync_with_stdio(false); //問題文中の添え字が0-indexか1-indexか確認! ll n,q; std::cin>>n>>q; SegmentTree<P> a(n+2,{MOD,-1},[&](P x,P y){return (x.first<y.first)?x:y;}); rep(i,0,n){ ll temp; std::cin>>temp; a.update(i,{temp,i},true); } rep(i,0,q){ ll query,l,r; std::cin>>query>>l>>r; l--;r--; if(query==1){ P al=a.query(l,l+1),ar=a.query(r,r+1); a.update(l,{ar.first,l},true);a.update(r,{al.first,r},true); }else{ std::cout<<a.query(l,r+1).second+1<<"\n"; } } return 0; }