結果

問題 No.875 Range Mindex Query
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-06-11 15:41:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 761 bytes
コンパイル時間 4,609 ms
コンパイル使用メモリ 264,884 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-06-11 15:41:58
合計ジャッジ時間 7,029 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 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 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 175 ms
5,888 KB
testcase_12 AC 152 ms
5,376 KB
testcase_13 AC 127 ms
6,016 KB
testcase_14 AC 119 ms
6,016 KB
testcase_15 AC 187 ms
6,016 KB
testcase_16 AC 221 ms
6,016 KB
testcase_17 AC 241 ms
6,144 KB
testcase_18 AC 235 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

using P = pair<int, int>;

P op(P a, P b) {
    return (a.first < b.first ? a : b);
}

P e() {
    return {2000000000, -1};
}

int main() {
    int n, q;
    cin >> n >> q;
    segtree<P, op, e> seg(n);
    for (int i = 0; i < n; i++) {
        int a;
        cin >> a;
        seg.set(i, {a, i + 1});
    }
    while (q--) {
        int t, l, r;
        cin >> t >> l >> r;
        l--;
        r--;
        if (t == 1) {
            auto [lv, li] = seg.get(l);
            auto [rv, ri] = seg.get(r);
            seg.set(l, {rv, l + 1});
            seg.set(r, {lv, r + 1});
        } else {
            cout << seg.prod(l, r + 1).second << endl;
        }
    }
}
0