結果
問題 | No.875 Range Mindex Query |
ユーザー | edamame882 |
提出日時 | 2019-09-24 00:11:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,961 bytes |
コンパイル時間 | 1,513 ms |
コンパイル使用メモリ | 175,216 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-19 04:48:45 |
合計ジャッジ時間 | 3,519 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 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 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; //repetition #define FOR(i,a,b) for(ll i=(a);i<(b);++i) #define rep(i, n) for(ll i = 0; i < (ll)(n); i++) //container util #define all(x) (x).begin(),(x).end() //typedef typedef long long ll; typedef vector<int> VI; typedef vector<VI> VVI; typedef vector<ll> VLL; typedef vector<VLL> VVLL; typedef vector<string> VS; typedef pair<int, int> PII; typedef pair<ll, ll> PLL; //const value //const ll MOD = 1e9 + 7; //const int dx[] = {0,1,0,-1};//{0,0,1,1,1,-1,-1,-1}; //const int dy[] = {1,0,-1,0};//{1,-1,0,1,-1,0,1,-1}; //conversion inline int toInt(string s) {int v; istringstream sin(s);sin>>v;return v;} inline ll toLL(string s) {ll v; istringstream sin(s);sin>>v;return v;} template<class T> inline string toString(T x) {ostringstream sout;sout<<x;return sout.str();} struct segTree{ int n; vector<PII> node; void init(int x){ n = 1; while(n < x) n *= 2; node.resize(n*2-1,PII(INT_MAX,-1)); } void update(int i, int x){ i += n-1; node[i] = PII(x,i-(n-1)); while(i > 0){ i = (i-1)/2; node[i] = min(node[i*2 +1],node[i*2+2]); } } PII getMin(int x, int y, int k=0, int l=0, int r=-1){ if(r < 0) r = n; if(r<=x || l>=y) return PII(INT_MAX,-1); if(x<=l && r<=y) return node[k]; PII vl = getMin(x, y, 2*k+1, l, (l+r)/2); PII vr = getMin(x, y, 2*k+2, (l+r)/2, r); return min(vl,vr); } }; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n,q; cin >> n >> q; segTree t; t.init(n); rep(i,n){ int a; cin >> a; t.update(i,a); } rep(i,q){ int cmd; cin >> cmd; if(cmd == 1){ int y,x; cin >> x >> y; x--,y--; int r = t.node.at(x+n-1).second; int l = t.node.at(y+n-1).second; t.update(x,l); t.update(y,r); }else{ int x,y; cin >> x >> y; x--,y--; cout << t.getMin(x,y+1).second + 1 << endl; } } return 0; }