結果
問題 | No.875 Range Mindex Query |
ユーザー | mint6421 |
提出日時 | 2019-09-07 00:03:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 209 ms / 2,000 ms |
コード長 | 2,016 bytes |
コンパイル時間 | 1,918 ms |
コンパイル使用メモリ | 173,224 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-06-24 21:56:06 |
合計ジャッジ時間 | 4,032 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 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 | 152 ms
7,296 KB |
testcase_12 | AC | 128 ms
5,376 KB |
testcase_13 | AC | 107 ms
7,296 KB |
testcase_14 | AC | 108 ms
7,296 KB |
testcase_15 | AC | 148 ms
7,296 KB |
testcase_16 | AC | 186 ms
7,284 KB |
testcase_17 | AC | 209 ms
7,168 KB |
testcase_18 | AC | 199 ms
7,296 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define inf INT_MAX #define INF LLONG_MAX #define ll long long #define ull unsigned long long #define M (int)(1e9+7) #define P pair<int,int> #define PLL pair<ll,ll> #define FOR(i,m,n) for(int i=(int)m;i<(int)n;i++) #define RFOR(i,m,n) for(int i=(int)m;i>=(int)n;i--) #define rep(i,n) FOR(i,0,n) #define rrep(i,n) RFOR(i,n,0) #define all(a) a.begin(),a.end() #define IN(a,n) rep(i,n){ cin>>a[i]; } const int vx[4] = {0,1,0,-1}; const int vy[4] = {1,0,-1,0}; #define PI 3.14159265 #define F first #define S second #define PB push_back #define EB emplace_back #define int ll #define vi vector<int> template< typename Monoid > struct segTree { using F = function< Monoid(Monoid, Monoid) >; int sz; vector< Monoid > seg; const F f; const Monoid M1; segTree(int n, const F f, const Monoid &M1) : f(f), M1(M1) { sz = 1; while(sz < n) sz <<= 1; seg.assign(2 * sz, M1); } void set(int k, const Monoid &x) { seg[k + sz] = x; } void build() { for(int k = sz - 1; k > 0; k--) { seg[k] = f(seg[2 * k + 0], seg[2 * k + 1]); } } void update(int k, const Monoid &x) { k += sz; seg[k] = x; while(k >>= 1) { seg[k] = f(seg[2 * k + 0], seg[2 * k + 1]); } } Monoid get(int a, int b) { Monoid L = M1, R = M1; for(a += sz, b += sz; a < b; a >>= 1, b >>= 1) { if(a & 1) L = f(L, seg[a++]); if(b & 1) R = f(seg[--b], R); } return f(L, R); } Monoid operator[](const int &k) const { return seg[k + sz]; } }; signed main(){ cin.tie(0); ios::sync_with_stdio(false); int n,q; cin>>n>>q; segTree<P> seg(n+1,[](P a,P b){return min(a,b);},P(INF,INF)); rep(i,n){ int a; cin>>a; seg.update(i,P(a,i)); } while(q--){ int a,l,r; cin>>a>>l>>r; l--;r--; if(a==1){ P s=seg.get(l,l+1),t=seg.get(r,r+1); seg.update(l,P(t.F,l)); seg.update(r,P(s.F,r)); }else{ cout<<seg.get(l,r+1).S+1<<endl; } } }