結果

問題 No.1703 Much Matching
ユーザー nebukuro09nebukuro09
提出日時 2021-10-08 22:32:19
言語 D
(dmd 2.107.1)
結果
AC  
実行時間 1,760 ms / 2,000 ms
コード長 1,767 bytes
コンパイル時間 736 ms
コンパイル使用メモリ 114,332 KB
実行使用メモリ 51,140 KB
最終ジャッジ日時 2023-09-04 14:23:59
合計ジャッジ時間 11,151 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 438 ms
15,644 KB
testcase_07 AC 17 ms
4,376 KB
testcase_08 AC 455 ms
17,320 KB
testcase_09 AC 520 ms
26,384 KB
testcase_10 AC 69 ms
7,448 KB
testcase_11 AC 102 ms
12,800 KB
testcase_12 AC 18 ms
4,376 KB
testcase_13 AC 182 ms
14,056 KB
testcase_14 AC 6 ms
4,380 KB
testcase_15 AC 83 ms
11,464 KB
testcase_16 AC 275 ms
13,956 KB
testcase_17 AC 304 ms
14,692 KB
testcase_18 AC 5 ms
4,376 KB
testcase_19 AC 717 ms
28,688 KB
testcase_20 AC 79 ms
12,036 KB
testcase_21 AC 852 ms
30,188 KB
testcase_22 AC 303 ms
15,004 KB
testcase_23 AC 218 ms
13,240 KB
testcase_24 AC 5 ms
4,380 KB
testcase_25 AC 25 ms
4,376 KB
testcase_26 AC 143 ms
12,612 KB
testcase_27 AC 329 ms
14,708 KB
testcase_28 AC 684 ms
28,580 KB
testcase_29 AC 114 ms
12,028 KB
testcase_30 AC 171 ms
13,184 KB
testcase_31 AC 13 ms
4,380 KB
testcase_32 AC 353 ms
15,988 KB
testcase_33 AC 221 ms
13,756 KB
testcase_34 AC 18 ms
4,380 KB
testcase_35 AC 51 ms
6,764 KB
testcase_36 AC 1,760 ms
51,140 KB
testcase_37 AC 2 ms
4,376 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;

immutable long MOD = 10^^9 + 7;

void main() {
    auto s = readln.split.map!(to!int);
    auto N = s[0];
    auto M = s[1];
    auto Q = s[2];
    auto A = iota(Q).map!(_ => readln.split.map!(x => x.to!int-1).array).array;

    A.sort!((a, b) => a[0] == b[0] ? a[1] > b[1] : a[0] < b[0]);

    auto st = new SegmentTree!(int, max, 0)(M+1);
    foreach (a; A) {
        auto x = a[0];
        auto y = a[1];
        auto v = st.query(0, y-1);
        if (v + 1 > st.query(y, y)) st.assign(y, v + 1);
    }

    st.query(0, M).writeln;
}

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]);
        }
    }

    void add(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