結果

問題 No.875 Range Mindex Query
ユーザー mtsdmtsd
提出日時 2019-09-06 21:28:06
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 2,257 bytes
コンパイル時間 1,573 ms
コンパイル使用メモリ 85,160 KB
実行使用メモリ 5,484 KB
最終ジャッジ日時 2023-09-06 22:32:04
合計ジャッジ時間 3,474 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 3 ms
4,380 KB
testcase_02 AC 3 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 3 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 3 ms
4,380 KB
testcase_11 AC 188 ms
5,484 KB
testcase_12 AC 156 ms
4,384 KB
testcase_13 AC 131 ms
5,400 KB
testcase_14 AC 130 ms
5,400 KB
testcase_15 AC 178 ms
5,360 KB
testcase_16 AC 241 ms
5,480 KB
testcase_17 AC 260 ms
5,356 KB
testcase_18 AC 250 ms
5,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <utility>
#include <queue>
#include <set>
#include <map>
#include <deque>
#include <iomanip>
#include <cstdio>
#include <stack>
#include <numeric>
#include <cassert>
using namespace std;
typedef  long long ll;
typedef pair<int,int> PII;
typedef vector<int> VI;
typedef vector<VI> VVI;
#define  MP make_pair
#define  PB push_back
#define inf 1000000007
#define mod 1000000007
#define rep(i,n) for(int i=0;i<(int)(n);++i)

template<typename T> class segtree {
private:
    int n,sz;
    vector<pair<T, int> > node;
public:
    segtree(vector<T>& v) : sz((int)v.size()){
        n = 1;
        while(n < sz){
            n *= 2;
        }
        node.resize(2*n, make_pair(numeric_limits<T>::max(), -1));
        for(int i = 0; i < sz; i++){
            node[i+n] = make_pair(v[i], i);
        }
        for(int i=n-1; i>=1; i--){
            node[i] = min(node[2*i], node[2*i+1]);
        }
    }
    void update(int k, T a)
    {
    	node[k+n] = make_pair(a, k);
    	k+=n;
        while(k>>=1){
            node[k] = min(node[2*k], node[2*k+1]);
    	}
    }
    pair<T, int> query(int a,int b,int k=0,int l=0,int r=-1)
    {
        pair<T, int> res1 = make_pair(numeric_limits<T>::max(), -1);
        pair<T, int> res2 = make_pair(numeric_limits<T>::max(), -1);
        a += n, b += n;
        while(a != b){
            if(a % 2) res1 = min(res1, node[a++]);
            if(b % 2) res2 = min(res2, node[--b]);
            a >>= 1, b>>= 1;
        }
        return min(res1, res2);
    }
    void print()
    {
        for(int i = 0; i < sz; i++){
            pair<T, int> p;
            p = query(i,i+1);
            cout << "st[" << i << "]: " << p.fi << " " << p.se << endl;
        }
    }
};


int main(){
    int n,q;
    cin >> n >> q;
    vector<int>a(n);
    rep(i,n)cin >> a[i];
    segtree<int>sg(a);
    rep(i,q){
        int c,l,r;
        cin >> c >> l >> r;
        l--;r--;
        if(c==1){
            int p = sg.query(l,l+1).first;
            int q = sg.query(r,r+1).first;
            sg.update(l,q);
            sg.update(r,p);
        }else{
            cout << sg.query(l,r+1).second+1 << endl;
        }
    }
    return 0;
}
0