結果

問題 No.875 Range Mindex Query
ユーザー nebukuro09nebukuro09
提出日時 2019-09-08 08:34:37
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 1,738 bytes
コンパイル時間 814 ms
コンパイル使用メモリ 119,896 KB
実行使用メモリ 10,164 KB
最終ジャッジ日時 2024-06-22 02:29:30
合計ジャッジ時間 3,522 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 233 ms
8,908 KB
testcase_12 AC 185 ms
6,944 KB
testcase_13 AC 162 ms
9,196 KB
testcase_14 AC 163 ms
8,820 KB
testcase_15 AC 222 ms
9,092 KB
testcase_16 AC 206 ms
8,420 KB
testcase_17 AC 222 ms
10,164 KB
testcase_18 AC 214 ms
9,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdio;

void main() {
    auto s = readln.split.map!(to!int);
    auto N = s[0];
    auto Q = s[1];
    auto A = readln.split.map!(to!int).array;

    auto st = new SegmentTree!(Tuple!(int, int), min, tuple(1<<29, 1<<29))(N);
    foreach (i, a; A) st.assign(i.to!int, tuple(a, i.to!int));

    while (Q--) {
        auto x = readln.split.map!(to!int);
        auto t = x[0];
        auto il = x[1] - 1;
        auto ir = x[2] - 1;
        if (t == 1) {
            auto al = st.query(il, il)[0];
            auto ar = st.query(ir, ir)[0];
            st.assign(il, tuple(ar, il));
            st.assign(ir, tuple(al, ir));
        } else {
            writeln(st.query(il, ir)[1] + 1);
        }
    }
}

class SegmentTree(T, alias op, T e) {
    T[] table;
    int size;
    int offset;

    this(int n) {
        size = 1;
        while (size <= n) size <<= 1;
        size <<= 1;
        table = new T[](size);
        fill(table, e);
        offset = size / 2;
    }

    void assign(int pos, T val) {
        pos += offset;
        table[pos] = val;
        while (pos > 1) {
            pos /= 2;
            table[pos] = op(table[pos*2], table[pos*2+1]);
        }
    }

    T query(int l, int r) {
        return query(l, r, 1, 0, offset-1);
    }

    T query(int l, int r, int i, int a, int b) {
        if (b < l || r < a) {
            return e;
        } else if (l <= a && b <= r) {
            return table[i];
        } else {
            return op(query(l, r, i*2, a, (a+b)/2), query(l, r, i*2+1, (a+b)/2+1, b));
        }
    }
}
0