結果
問題 | No.875 Range Mindex Query |
ユーザー | petite_prog_twitter |
提出日時 | 2019-12-16 13:28:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 201 ms / 2,000 ms |
コード長 | 4,709 bytes |
コンパイル時間 | 1,660 ms |
コンパイル使用メモリ | 174,172 KB |
実行使用メモリ | 5,632 KB |
最終ジャッジ日時 | 2024-07-02 19:43:34 |
合計ジャッジ時間 | 4,029 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 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 | 2 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 | 2 ms
5,376 KB |
testcase_11 | AC | 141 ms
5,504 KB |
testcase_12 | AC | 119 ms
5,376 KB |
testcase_13 | AC | 100 ms
5,632 KB |
testcase_14 | AC | 98 ms
5,632 KB |
testcase_15 | AC | 135 ms
5,632 KB |
testcase_16 | AC | 187 ms
5,632 KB |
testcase_17 | AC | 201 ms
5,632 KB |
testcase_18 | AC | 194 ms
5,632 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:178:36: warning: 'right_index' may be used uninitialized [-Wmaybe-uninitialized] 178 | cout << S.query(l,r+1)+1 << endl; //1-indexedになおす | ^ main.cpp:125:24: note: 'right_index' was declared here 125 | int left_index,right_index; | ^~~~~~~~~~~
ソースコード
/* ∫ ∫ ∫ ノヽ (_ ) (_ ) (______ ) ヽ(´・ω・)ノ | / UU */ #include <bits/stdc++.h> typedef long long ll; using namespace std; using P = pair<ll, ll>; typedef vector<int> vi; const int MOD = (int)1e9 + 7; const ll INF = 1LL << 62; const int inf = 1<<30; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } #define REP(i, n) for (int i = 0; i < (n); i++) #define FOR(i,s,n) for (int i = s; i < (n); i++) #define ALL(obj) (obj).begin(), (obj).end() //コンテナじゃないと使えない!! #define debug(x) cerr << #x << ": " << x << "\n"; #define mp make_pair template <typename T> ostream& operator<<(ostream& os, vector<T> &V){ int N = V.size(); REP(i,N){ os << V[i]; if (i!=N-1) os << " "; } os << "\n"; return os; } template <typename T> ostream& operator<<(ostream& os, pair<T,T> const&P){ os << P.first; os << " "; os << P.second; return os; } template <typename T> ostream& operator<<(ostream& os, set<T> &S){ auto it=S.begin(); while(it!=S.end()){ os << *it; os << " "; it++; } os << "\n"; return os; } template <typename T> ostream& operator<<(ostream& os, deque<T> &q){ for(auto it=q.begin();it<q.end();it++){ os<<*it; os<<" "; } os<<endl; return os; } vector<pair<int,int>> dxdy = {mp(0,1),mp(1,0),mp(-1,0),mp(0,-1)}; //fixed<<setprecision(10)<<ans<<endl; template <typename T> struct SegmentTree{ /* ~~~~1-indexで実装~~~~ 1 2 3 4 3 5 6 ~~~~親・兄弟・子へのアクセスの仕方~~~~ i<<1 i i^1 i<<1|0 i<<1|1 */ using F = function<T(T,T)>; int N; F func; //関数(minとか) T identity; //単位元 vector<T> data; //上から添字 2*Nくらいのノード vector<int> indexes; SegmentTree(){} SegmentTree(F f,T identity):func(f),identity(identity){} void init(int n_){ N=1; while(N<n_) N<<=1; //完全二分木がいいので2^k個にする data.assign(N<<1, identity); //2N個のノード indexes.assign(N<<1, 0); //2N個のノード for(int i=0;i<N;i++) indexes[i+N]=i; } //木を構成(vectorを元に各ノードの値を計算) void build(const vector<T>& v){ int n_ = v.size(); init(n_); for(int i=0; i<n_; i++){ data[N+i] = v[i]; //葉 } for(int i=n_-1; i; i--){ data[i] = func(data[i<<1], data[(i<<1)|1] ); //子をみて親を更新 } } //k番目の値をxに変える void set_val(int k, T x){ k+=N; //indexをセグ木でのindexに変換 data[k] = x; //値の書き換え(葉) while(k>>=1){ //右シフトして0にならない間 data[k] = func(data[k<<1], data[(k<<1)+1] ); if (data[k]==data[k<<1]) indexes[k]=indexes[k<<1]; else indexes[k]=indexes[(k<<1)+1]; } } //https://hcpc-hokudai.github.io/archive/structure_segtree_001.pdf //閉開区間[left,right)での T query(int left,int right){ int left_index,right_index; T left_val=identity, right_val=identity; for(int l=left+N,r=right+N; l<r; l>>=1,r>>=1){ if(l&1) { left_val = func(left_val, data[l++] ); if (left_val==data[l-1]) left_index = indexes[l-1]; } if(r&1) { right_val = func(data[--r], right_val); if (right_val==data[r]) right_index = indexes[r]; } } T res = func(left_val, right_val); if (res==left_val) return left_index; return right_index; // return func(left_val, right_val); } //葉の値を取得する T get_val(int idx){ return data[idx+N]; } }; int main(){ cin.tie(0); ios::sync_with_stdio(false); int N,Q; cin >> N >> Q; vi A(N); REP(i,N) cin >> A[i]; SegmentTree<int> S( [](int a,int b)->int{ return min(a,b); }, __INT_MAX__ ); S.init(N); REP(i,N){ S.set_val(i,A[i]); } // S.build(A); int c,l,r,tmp; REP(i,Q){ cin >> c >> l >> r; l--;r--; if(c==1){ tmp = S.get_val(l); S.set_val(l,S.get_val(r)); S.set_val(r,tmp); }else{ cout << S.query(l,r+1)+1 << endl; //1-indexedになおす } } }