結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー tamatotamato
提出日時 2021-11-12 21:44:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 712 ms / 3,000 ms
コード長 864 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 156,884 KB
最終ジャッジ日時 2024-05-04 07:59:22
合計ジャッジ時間 11,800 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 663 ms
135,552 KB
testcase_05 AC 222 ms
135,028 KB
testcase_06 AC 250 ms
156,884 KB
testcase_07 AC 35 ms
52,512 KB
testcase_08 AC 118 ms
93,184 KB
testcase_09 AC 169 ms
111,528 KB
testcase_10 AC 241 ms
104,656 KB
testcase_11 AC 108 ms
88,032 KB
testcase_12 AC 54 ms
64,896 KB
testcase_13 AC 452 ms
115,584 KB
testcase_14 AC 184 ms
114,280 KB
testcase_15 AC 699 ms
135,640 KB
testcase_16 AC 203 ms
95,208 KB
testcase_17 AC 347 ms
109,800 KB
testcase_18 AC 125 ms
95,292 KB
testcase_19 AC 229 ms
111,268 KB
testcase_20 AC 78 ms
76,820 KB
testcase_21 AC 472 ms
122,240 KB
testcase_22 AC 593 ms
134,340 KB
testcase_23 AC 674 ms
132,588 KB
testcase_24 AC 255 ms
138,328 KB
testcase_25 AC 216 ms
131,976 KB
testcase_26 AC 670 ms
136,212 KB
testcase_27 AC 216 ms
132,844 KB
testcase_28 AC 703 ms
131,576 KB
testcase_29 AC 220 ms
132,920 KB
testcase_30 AC 669 ms
130,928 KB
testcase_31 AC 712 ms
136,336 KB
testcase_32 AC 217 ms
133,136 KB
testcase_33 AC 40 ms
59,272 KB
testcase_34 AC 36 ms
52,480 KB
testcase_35 AC 40 ms
58,752 KB
testcase_36 AC 40 ms
58,368 KB
testcase_37 AC 37 ms
52,480 KB
testcase_38 AC 45 ms
61,400 KB
testcase_39 AC 48 ms
61,440 KB
testcase_40 AC 43 ms
60,800 KB
testcase_41 AC 44 ms
60,928 KB
testcase_42 AC 42 ms
60,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N, A, B, X, Y = map(int, input().split())
    H = list(map(int, input().split()))

    ok = sum(H)
    ng = -1
    mid = (ok + ng) // 2
    while ok - ng > 1:
        HH = [max(0, h - mid) for h in H]
        AA = A
        cnt = 0
        for h in HH:
            cnt += h // X
        if cnt >= AA:
            S = sum(HH) - AA * X
        else:
            HHH = [h % X for h in HH]
            AA -= cnt
            if AA >= N:
                S = 0
            else:
                HHH.sort(reverse=True)
                for i in range(AA):
                    HHH[i] = 0
                S = sum(HHH)
        if S <= B * Y:
            ok = mid
        else:
            ng = mid
        mid = (ok + ng) // 2
    print(ok)


if __name__ == '__main__':
    main()
0