結果

問題 No.2422 regisys?
ユーザー InTheBloomInTheBloom
提出日時 2024-03-06 08:00:11
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 1,673 bytes
コンパイル時間 1,930 ms
コンパイル使用メモリ 197,456 KB
実行使用メモリ 16,944 KB
最終ジャッジ日時 2024-09-29 18:14:08
合計ジャッジ時間 8,450 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 1 ms
6,820 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 1 ms
6,816 KB
testcase_27 AC 1 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 93 ms
8,452 KB
testcase_32 AC 139 ms
8,204 KB
testcase_33 AC 70 ms
8,476 KB
testcase_34 AC 62 ms
6,820 KB
testcase_35 AC 83 ms
8,344 KB
testcase_36 AC 104 ms
6,820 KB
testcase_37 AC 141 ms
8,432 KB
testcase_38 AC 111 ms
6,816 KB
testcase_39 AC 76 ms
6,816 KB
testcase_40 AC 45 ms
7,216 KB
testcase_41 AC 72 ms
7,296 KB
testcase_42 AC 137 ms
15,520 KB
testcase_43 AC 92 ms
8,016 KB
testcase_44 AC 158 ms
15,612 KB
testcase_45 AC 126 ms
14,232 KB
testcase_46 AC 155 ms
15,488 KB
testcase_47 AC 110 ms
8,672 KB
testcase_48 AC 140 ms
15,616 KB
testcase_49 AC 139 ms
11,680 KB
testcase_50 AC 121 ms
16,712 KB
testcase_51 AC 236 ms
15,772 KB
testcase_52 AC 65 ms
8,492 KB
testcase_53 AC 160 ms
15,440 KB
testcase_54 AC 236 ms
16,944 KB
testcase_55 AC 162 ms
16,312 KB
testcase_56 AC 171 ms
11,148 KB
testcase_57 AC 268 ms
16,712 KB
testcase_58 AC 272 ms
15,912 KB
testcase_59 AC 264 ms
15,836 KB
testcase_60 AC 266 ms
15,584 KB
testcase_61 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    int N, M; readln.read(N, M);
    auto A = readln.split.to!(int[]);
    auto B = readln.split.to!(int[]);

    int[] mma, non_mma;

    foreach (i; 0..M) {
        int T, C; readln.read(T, C);

        if (T == 0) non_mma ~= C;
        if (T == 1) mma ~= C;
    }

    solve(N, M, A, B, mma, non_mma);
}

void solve (int N, int M, int[] A, int[] B, int[] mma, int[] non_mma) {
    auto items = new Tuple!(int, int, int)[](N);
    foreach (i; 0..N) {
        items[i] = tuple(i, A[i], B[i]);
    }

    items.sort!"a[1] < b[1]";
    non_mma.sort;

    auto used = new bool[](N);

    {
        BinaryHeap!(Tuple!(int, int)[], "a[1] < b[1]") PQ = [];
        // rangeだけ使う
        auto r = items;

        foreach (v; non_mma) {
            while (!r.empty && r.front[1] <= v) {
                PQ.insert(tuple(r.front[0], r.front[2]));
                r.popFront;
            }

            if (PQ.empty) continue;
            used[PQ.front[0]] = true;
            PQ.removeFront;
        }
    }

    mma.sort;
    BinaryHeap!(Tuple!(int, int)[], "b[1] < a[1]") PQ = [];
    foreach (i; 0..N) {
        if (used[items[i][0]]) continue;
        PQ.insert(tuple(items[i][0], items[i][2]));
    }

    foreach (v; mma) {
        if (PQ.empty) break;
        if (v < PQ.front[1]) continue;
        used[PQ.front[0]] = true;
        PQ.removeFront;
    }

    int ans = 0;
    foreach (i; 0..N) if (!used[i]) ans++;

    writeln(ans);
}

void read (T...) (string S, ref T args) {
    import std.conv : to;
    import std.array : split;
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0