結果

問題 No.1708 Quality of Contest
ユーザー kokatsukokatsu
提出日時 2021-10-15 21:42:23
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 2,847 ms
コンパイル使用メモリ 240,144 KB
実行使用メモリ 20,308 KB
最終ジャッジ日時 2024-06-22 12:49:00
合計ジャッジ時間 8,505 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 5 ms
6,944 KB
testcase_04 AC 5 ms
6,940 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 5 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 183 ms
19,428 KB
testcase_10 AC 216 ms
19,084 KB
testcase_11 AC 212 ms
20,060 KB
testcase_12 AC 212 ms
18,980 KB
testcase_13 AC 215 ms
20,032 KB
testcase_14 AC 204 ms
19,088 KB
testcase_15 AC 204 ms
19,144 KB
testcase_16 AC 203 ms
19,548 KB
testcase_17 AC 204 ms
19,968 KB
testcase_18 AC 210 ms
19,972 KB
testcase_19 AC 207 ms
20,308 KB
testcase_20 AC 203 ms
19,968 KB
testcase_21 AC 208 ms
19,048 KB
testcase_22 AC 218 ms
19,160 KB
testcase_23 AC 212 ms
19,112 KB
testcase_24 AC 199 ms
20,188 KB
testcase_25 AC 195 ms
20,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    int N, M ,X;
    readf("%d %d %d\n", N, M, X);

    auto A = new long[](N), B = new long[](N);
    foreach (i; 0 .. N) {
        readf("%d %d\n", A[i], B[i]);
    }

    int K;
    readf("%d\n", K);

    auto C = readln.chomp.split.to!(long[]);

    zip(A, B).sort!((a, b) => a[0] > b[0]);
    auto used = new bool[](M+1);
    auto heap = new BinaryHeap!(Array!long, "a < b")();
    foreach (i; 0 .. N) {
        if (used[B[i]]) {
            heap.insert(A[i]);
        }
        else {
            heap.insert(A[i]+X);
            used[B[i]] = true;
        }
    }

    auto cumsum = heap.array.cumulativeFold!"a + b".array;
    long res;
    foreach (c; C) {
        if (c == 0) {
            continue;
        }
        res += cumsum[c-1];
    }

    res.writeln;
}
0