結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー lloyzlloyz
提出日時 2021-11-12 23:18:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,819 ms / 3,000 ms
コード長 505 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 102,928 KB
最終ジャッジ日時 2024-11-25 21:31:50
合計ジャッジ時間 33,004 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 42 ms
52,608 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 55 ms
62,208 KB
testcase_04 AC 1,328 ms
102,416 KB
testcase_05 AC 1,668 ms
101,788 KB
testcase_06 AC 934 ms
100,696 KB
testcase_07 AC 56 ms
62,080 KB
testcase_08 AC 254 ms
90,104 KB
testcase_09 AC 359 ms
97,228 KB
testcase_10 AC 953 ms
86,656 KB
testcase_11 AC 598 ms
83,724 KB
testcase_12 AC 105 ms
76,476 KB
testcase_13 AC 911 ms
92,224 KB
testcase_14 AC 1,093 ms
95,364 KB
testcase_15 AC 903 ms
102,268 KB
testcase_16 AC 1,060 ms
83,968 KB
testcase_17 AC 559 ms
89,852 KB
testcase_18 AC 1,193 ms
89,024 KB
testcase_19 AC 312 ms
88,936 KB
testcase_20 AC 222 ms
81,200 KB
testcase_21 AC 575 ms
97,756 KB
testcase_22 AC 904 ms
99,692 KB
testcase_23 AC 1,469 ms
102,676 KB
testcase_24 AC 1,558 ms
101,628 KB
testcase_25 AC 1,749 ms
102,300 KB
testcase_26 AC 1,430 ms
100,744 KB
testcase_27 AC 1,819 ms
101,540 KB
testcase_28 AC 1,397 ms
100,876 KB
testcase_29 AC 1,676 ms
102,284 KB
testcase_30 AC 1,545 ms
102,928 KB
testcase_31 AC 1,454 ms
100,608 KB
testcase_32 AC 1,648 ms
100,736 KB
testcase_33 AC 77 ms
71,744 KB
testcase_34 AC 66 ms
75,336 KB
testcase_35 AC 96 ms
75,892 KB
testcase_36 AC 91 ms
75,776 KB
testcase_37 AC 75 ms
75,836 KB
testcase_38 AC 92 ms
75,904 KB
testcase_39 AC 86 ms
75,636 KB
testcase_40 AC 76 ms
73,036 KB
testcase_41 AC 91 ms
76,196 KB
testcase_42 AC 86 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush

n, a, b, x, y = map(int, input().split())
H = list(map(int, input().split()))

left = -1
right = 10**9
while right - left > 1:
    mid = (left + right) // 2
    Hc = [0 for _ in range(n)]
    for i in range(n):
        Hc[i] = min(0, mid - H[i])
    heapify(Hc)
    for i in range(a):
        curr = heappop(Hc)
        curr = min(0, curr + x)
        heappush(Hc, curr)
    if -sum(Hc) <= b * y:
        right = mid
    else:
        left = mid
print(right)
0