結果

問題 No.875 Range Mindex Query
ユーザー finefine
提出日時 2019-10-23 00:20:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 3,595 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 172,368 KB
実行使用メモリ 6,120 KB
最終ジャッジ日時 2023-09-18 13:36:47
合計ジャッジ時間 4,286 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 3 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,384 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 3 ms
4,376 KB
testcase_11 AC 131 ms
5,924 KB
testcase_12 AC 109 ms
4,580 KB
testcase_13 AC 89 ms
5,948 KB
testcase_14 AC 88 ms
6,120 KB
testcase_15 AC 121 ms
5,992 KB
testcase_16 AC 175 ms
5,916 KB
testcase_17 AC 190 ms
5,808 KB
testcase_18 AC 183 ms
5,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

template <class Monoid>
struct SegmentTree {
    using T = typename Monoid::T;

    int n;
    vector<T> data;

    SegmentTree(int size, T initial_value = Monoid::identity()) {
        n = 1;
        while (n < size) n *= 2;
        data.resize(2 * n - 1, initial_value);
    }

    SegmentTree(const vector<T>& v, T initial_value = Monoid::identity()) {
        int size = v.size();
        n = 1;
        while (n < size) n *= 2;
        data.resize(2 * n - 1, initial_value);

        for (int i = 0; i < size; i++) data[i + n - 1] = v[i];
        for (int i = n - 2; i >= 0; i--) data[i] = Monoid::merge(data[i * 2 + 1], data[i * 2 + 2]);
    }

    T getLeaf(int k) {
        return data[k + n - 1];
    }

    void update(int k, T x) {
        k += n - 1; //葉の節点
        Monoid::update(data[k], x);
        while (k > 0) {
            k = (k - 1) / 2;
            data[k] = Monoid::merge(data[k * 2 + 1], data[k * 2 + 2]);
        }
    }

    //区間[a, b)に対するクエリに答える
    //k:節点番号, [l, r):節点に対応する区間
    T query(int a, int b, int k, int l, int r) {
        //[a, b)と[l, r)が交差しない場合
        if (r <= a || b <= l) return Monoid::identity();
        //[a, b)が[l, r)を含む場合、節点の値
        if (a <= l && r <= b) return data[k];
        else {
            //二つの子をマージ
            T vl = query(a, b, k * 2 + 1, l, (l + r) / 2);
            T vr = query(a, b, k * 2 + 2, (l + r) / 2, r);
            return Monoid::merge(vl, vr);
        }
    }

    //外から呼ぶ用
    T query(int a, int b) {
        return query(a, b, 0, 0, n);
    }

    //非再帰版: バグってるかもしれないので定数倍高速化する時以外使わないで
    //区間[a, b)に対するクエリに答える
    T query_fast(int a, int b) {
        T vl = Monoid::identity(), vr = Monoid::identity();
        for (int l = a + n, r = b + n; l != r; l >>= 1, r >>= 1) {
            if (l & 1) vl = Monoid::merge(vl, data[l++ - 1]);
            if (r & 1) vr = Monoid::merge(data[--r - 1], vr);
        }
        return Monoid::merge(vl, vr);
    }
};

// 以下、Monoidの例
template <class U = ll>
struct RangeMax {
    using T = U;
    static T merge(T x, T y) { return max(x, y); }
    static void update(T& target, T x) { target = x; }
    static constexpr T identity() { return T(0); }
};

template <class U = ll>
struct RangeSum {
    using T = U;
    static T merge(T x, T y) { return x + y; }
    static void update(T& target, T x) { target += x; }
    static constexpr T identity() { return T(0); }
};

template <class U = ll>
struct RangeMindex {
    using T = U;
    static T merge(T x, T y) { return min(x, y); }
    static void update(T& target, T x) { target = x; }
    static constexpr T identity() { return T(1e9, 1e9); }
};

using P = pair<int, int>;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n, q;
    cin >> n >> q;
    vector<P> v;
    for (int i = 0; i < n; i++) {
        int x;
        cin >> x;
        v.emplace_back(x, i);
    }

    SegmentTree< RangeMindex<P> > st(v);
    for (int i = 0; i < q; i++) {
        int c, l, r;
        cin >> c >> l >> r;
        l--;
        if (c == 1) {
            r--;
            P al = st.getLeaf(l);
            P ar = st.getLeaf(r);
            st.update(l, P(ar.first, l));
            st.update(r, P(al.first, r));
        } else {
            cout << st.query_fast(l, r).second + 1 << endl;
        }
    }
    return 0;
}
0