結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー kokatsukokatsu
提出日時 2021-11-12 22:06:06
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 1,132 ms / 3,000 ms
コード長 1,052 bytes
コンパイル時間 2,436 ms
コンパイル使用メモリ 216,032 KB
実行使用メモリ 10,764 KB
最終ジャッジ日時 2024-06-22 13:15:56
合計ジャッジ時間 21,515 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 790 ms
10,152 KB
testcase_05 AC 1,121 ms
10,072 KB
testcase_06 AC 219 ms
10,688 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 295 ms
10,272 KB
testcase_09 AC 462 ms
10,504 KB
testcase_10 AC 431 ms
10,596 KB
testcase_11 AC 188 ms
10,328 KB
testcase_12 AC 36 ms
6,944 KB
testcase_13 AC 402 ms
10,204 KB
testcase_14 AC 728 ms
10,116 KB
testcase_15 AC 665 ms
10,372 KB
testcase_16 AC 531 ms
10,108 KB
testcase_17 AC 300 ms
10,764 KB
testcase_18 AC 673 ms
10,344 KB
testcase_19 AC 249 ms
10,504 KB
testcase_20 AC 122 ms
9,280 KB
testcase_21 AC 437 ms
10,416 KB
testcase_22 AC 623 ms
10,728 KB
testcase_23 AC 646 ms
10,364 KB
testcase_24 AC 1,084 ms
10,500 KB
testcase_25 AC 1,132 ms
10,312 KB
testcase_26 AC 674 ms
10,436 KB
testcase_27 AC 1,125 ms
10,176 KB
testcase_28 AC 704 ms
10,376 KB
testcase_29 AC 1,120 ms
10,308 KB
testcase_30 AC 834 ms
10,056 KB
testcase_31 AC 763 ms
10,496 KB
testcase_32 AC 1,076 ms
10,216 KB
testcase_33 AC 1 ms
6,948 KB
testcase_34 AC 1 ms
6,944 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 AC 1 ms
6,940 KB
testcase_38 AC 3 ms
6,944 KB
testcase_39 AC 5 ms
6,940 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 AC 2 ms
6,944 KB
testcase_42 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    long N, A, B, X, Y;
    readf("%d %d %d %d %d\n", N, A, B, X, Y);

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

    long ok = 10 ^^ 9, ng = -1;
    while (ok - ng > 1) {
        long mid = (ok + ng) / 2;

        auto D = H.dup;
        D[] -= mid;
        auto P = D.heapify;

        bool isOK;
        foreach (i; 0 .. A) {
            if (P.empty) {
                isOK = true;
                break;
            }

            auto f = P.front;
            P.popFront;

            f = max(0, f-X);
            if (f > 0) {
                P.insert(f);
            }
        }

        if (!isOK) {
            long S;
            while (!P.empty) {
                auto f = P.front;
                P.popFront;

                if (f > 0) {
                    S += f;
                }
            }

            if (S <= B * Y) {
                isOK = true;
            }
        }

        if (isOK) {
            ok = mid;
        }
        else {
            ng = mid;
        }
    }
    
    ok.writeln;
}
0