結果
問題 | No.875 Range Mindex Query |
ユーザー | kotatsugame |
提出日時 | 2019-09-07 02:16:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,377 bytes |
コンパイル時間 | 828 ms |
コンパイル使用メモリ | 79,544 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 01:32:39 |
合計ジャッジ時間 | 3,522 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 168 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 195 ms
5,376 KB |
testcase_16 | AC | 274 ms
5,376 KB |
testcase_17 | AC | 296 ms
5,376 KB |
testcase_18 | AC | 287 ms
5,376 KB |
コンパイルメッセージ
main.cpp:52:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 52 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; #include<vector> #include<functional> #include<limits> template<typename T> struct segtree{ function<T(T,T)>calcfn,updatefn; int n; T defvalue; vector<T>dat; segtree(int n_=0,T defvalue_=numeric_limits<T>::max(), function<T(T,T)>calcfn_=[](T a,T b){return a<b?a:b;}, function<T(T,T)>updatefn_=[](T a,T b){return b;} ):defvalue(defvalue_),calcfn(calcfn_),updatefn(updatefn_) { n=1; while(n<n_)n<<=1; dat.assign(2*n-1,defvalue); } void copy(const vector<T>&v) { for(int i=0;i<v.size();i++)dat[i+n-1]=v[i]; for(int i=n-2;i>=0;i--)dat[i]=calcfn(dat[i*2+1],dat[i*2+2]); } void update(int i,T a) { i+=n-1; dat[i]=updatefn(dat[i],a); while(i>0) { i=(i-1)/2; dat[i]=calcfn(dat[2*i+1],dat[2*i+2]); } } T query(int a,int b,int i=0,int l=0,int r=-1)//[a,b) { if(r<0)r=n; if(r<=a||b<=l)return defvalue; else if(a<=l&&r<=b)return dat[i]; else { return calcfn( query(a,b,i*2+1,l,(l+r)/2), query(a,b,i*2+2,(l+r)/2,r) ); } } }; int N,Q; int A[1<<17]; main() { cin>>N>>Q; segtree<int>P(N,0,[](int a,int b){return A[a]<A[b]?a:b;}); for(int i=0;i<N;i++) { cin>>A[i]; P.update(i,i); } for(int i=0;i<Q;i++) { int c,l,r;cin>>c>>l>>r; l--,r--; if(c==1) { swap(A[l],A[r]); P.update(l,l); P.update(r,r); } else { cout<<P.query(l,r+1)+1<<endl; } } }