結果
問題 | No.875 Range Mindex Query |
ユーザー | cureskol |
提出日時 | 2019-09-06 23:45:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 266 ms / 2,000 ms |
コード長 | 3,463 bytes |
コンパイル時間 | 1,634 ms |
コンパイル使用メモリ | 174,052 KB |
実行使用メモリ | 8,960 KB |
最終ジャッジ日時 | 2024-06-24 21:38:23 |
合計ジャッジ時間 | 4,307 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 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 | 3 ms
5,376 KB |
testcase_06 | AC | 3 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 | 212 ms
8,576 KB |
testcase_12 | AC | 174 ms
6,144 KB |
testcase_13 | AC | 150 ms
8,828 KB |
testcase_14 | AC | 142 ms
8,704 KB |
testcase_15 | AC | 198 ms
8,832 KB |
testcase_16 | AC | 242 ms
8,832 KB |
testcase_17 | AC | 266 ms
8,784 KB |
testcase_18 | AC | 258 ms
8,960 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const int MOD=1e9+7; //const int MOD=998244353; const int INF=1e9; const long long LINF=1e18; #define int long long //template template <typename T> void fin(T a){ cout<<a<<endl; exit(0); } template <typename T> struct SegmentTree{ using F = function<T(T,T)>; int n; //セグ木の幅 F f; //モノイドの作用 T ti; //初期値 vector<T> dat; //セグ木で使う配列 一番上に使われるのがdat[1] 一番下の段の左端がdat[n] SegmentTree(){}; SegmentTree(F f,T ti):f(f),ti(ti){} //fがモノイドとしての作用、tiが初期値 void init(int n_){ //ただの初期化 n=1; while(n<n_) n<<=1; //nが実際にとる2べきの幅 dat.assign(n<<1,ti); //dat配列は幅の2倍あってその全てにtiを代入 } void build(const vector<T> &v){ //vector vに合わせた初期化 int n_=v.size(); init(n_); for(int i=0;i<n_;i++) dat[n+i]=v[i]; //v[i]を一番子の所に代入 for(int i=n-1;i;i--) dat[i]=f(dat[(i<<1)|0],dat[(i<<1)|1]); //iの子供は2*i、2*i+1 } void set_val(int k,T x){ //(0-indexedで)kにxを代入 dat[k+=n]=x; while(k>>=1) //kがどんどん自分の親になっていく、0になったらおしまい dat[k]=f(dat[(k<<1)|0],dat[(k<<1)|1]); } T query(int a,int b){ //[a,b)の範囲のモノイドの作用を返す T vl=ti,vr=ti; for(int l=a+n,r=b+n;l<r;l>>=1,r>>=1) { if(l&1) vl=f(vl,dat[l++]); //左端を使いたくなるのはブロックが奇数の時 if(r&1) vr=f(dat[--r],vr); //右端〃偶数の時(開区間なのでr:奇数で反応) } return f(vl,vr); } template<typename C> int find(int st,C &check,T &acc,int k,int l,int r){ //dat[k]:[l,r)の間にいるenを返す //accはst~lとかで確定している値 if(l+1==r){ //答えがちゃんと存在するならこのlが答え acc=f(acc,dat[k]); return check(acc)?k-n:-1; //入るならk-n(==l)を、入らないなら-1を返す } int m=(l+r)>>1; //にぶたんのそれ if(m<=st) return find(st,check,acc,(k<<1)|1,m,r); //mがstより後ろなら明らかにl=m; if(st<=l&&!check(f(acc,dat[k]))){ //今見てるk全部でもダメ(mだと足りないのでl=mにする) acc=f(acc,dat[k]); //kは全部accに加えた上で-1を返す return -1; } int vl=find(st,check,acc,(k<<1)|0,l,m); //まず[l,m)の中にenがいるか探す if(~vl) return vl; //いたならそれを返す(if(~vl)は-1以外にのみ反応する) return find(st,check,acc,(k<<1)|1,m,r); //いなかったら[m,r)の中にenがいるのでそれを返す //56行目がここで効いてる } template<typename C> int find(int st,C &check){ //check(f(dat[st]~dat[en-1]))=false,check(f(dat[st]~dat[en]))=trueとなるenを返す T acc=ti; return find(st,check,acc,1,0,n); } }; //main signed main(){ typedef pair<int,int> P; int N,Q;cin>>N>>Q; std::vector<P> v(N); for(int i=0;i<N;i++){ int a;cin>>a; v[i]=P(a,i); } auto f=[](P a,P b){return min(a,b);}; SegmentTree<P> seg(f,P(INF,0)); seg.build(v); for(int i=0;i<Q;i++){ int a,l,r;cin>>a>>l>>r;l--;r--; if(a==1){ int lv=seg.query(l,l+1).first,rv=seg.query(r,r+1).first; seg.set_val(r,P(lv,r)); seg.set_val(l,P(rv,l)); } else cout<<seg.query(l,r+1).second+1<<endl; } }