結果

問題 No.1703 Much Matching
ユーザー nebukuro09nebukuro09
提出日時 2021-10-08 22:32:19
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 1,774 ms / 2,000 ms
コード長 1,767 bytes
コンパイル時間 1,019 ms
コンパイル使用メモリ 125,324 KB
実行使用メモリ 51,148 KB
最終ジャッジ日時 2024-06-22 12:44:55
合計ジャッジ時間 12,041 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 441 ms
15,860 KB
testcase_07 AC 17 ms
6,940 KB
testcase_08 AC 458 ms
18,400 KB
testcase_09 AC 524 ms
25,296 KB
testcase_10 AC 68 ms
8,048 KB
testcase_11 AC 101 ms
11,236 KB
testcase_12 AC 18 ms
6,944 KB
testcase_13 AC 179 ms
12,756 KB
testcase_14 AC 6 ms
6,940 KB
testcase_15 AC 82 ms
8,660 KB
testcase_16 AC 270 ms
13,548 KB
testcase_17 AC 308 ms
13,828 KB
testcase_18 AC 5 ms
6,940 KB
testcase_19 AC 719 ms
28,336 KB
testcase_20 AC 78 ms
8,456 KB
testcase_21 AC 861 ms
30,040 KB
testcase_22 AC 308 ms
13,540 KB
testcase_23 AC 219 ms
14,072 KB
testcase_24 AC 5 ms
6,944 KB
testcase_25 AC 25 ms
6,940 KB
testcase_26 AC 143 ms
12,720 KB
testcase_27 AC 328 ms
14,172 KB
testcase_28 AC 684 ms
28,196 KB
testcase_29 AC 112 ms
12,884 KB
testcase_30 AC 172 ms
12,772 KB
testcase_31 AC 14 ms
6,940 KB
testcase_32 AC 355 ms
14,096 KB
testcase_33 AC 219 ms
13,656 KB
testcase_34 AC 18 ms
6,944 KB
testcase_35 AC 52 ms
6,944 KB
testcase_36 AC 1,774 ms
51,148 KB
testcase_37 AC 3 ms
6,940 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