結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー lloyzlloyz
提出日時 2021-11-12 23:18:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,665 ms / 3,000 ms
コード長 505 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 103,008 KB
最終ジャッジ日時 2024-05-04 11:02:37
合計ジャッジ時間 30,226 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,888 KB
testcase_01 AC 36 ms
53,348 KB
testcase_02 AC 37 ms
53,364 KB
testcase_03 AC 53 ms
63,644 KB
testcase_04 AC 1,313 ms
102,876 KB
testcase_05 AC 1,566 ms
102,112 KB
testcase_06 AC 872 ms
100,896 KB
testcase_07 AC 48 ms
63,584 KB
testcase_08 AC 226 ms
90,024 KB
testcase_09 AC 319 ms
97,200 KB
testcase_10 AC 860 ms
87,152 KB
testcase_11 AC 550 ms
83,968 KB
testcase_12 AC 87 ms
76,816 KB
testcase_13 AC 848 ms
92,364 KB
testcase_14 AC 1,005 ms
95,664 KB
testcase_15 AC 850 ms
102,572 KB
testcase_16 AC 994 ms
84,224 KB
testcase_17 AC 559 ms
89,960 KB
testcase_18 AC 1,141 ms
89,320 KB
testcase_19 AC 298 ms
89,548 KB
testcase_20 AC 197 ms
80,992 KB
testcase_21 AC 536 ms
98,140 KB
testcase_22 AC 834 ms
99,516 KB
testcase_23 AC 1,395 ms
102,872 KB
testcase_24 AC 1,453 ms
102,348 KB
testcase_25 AC 1,641 ms
102,716 KB
testcase_26 AC 1,343 ms
101,056 KB
testcase_27 AC 1,581 ms
102,072 KB
testcase_28 AC 1,320 ms
101,304 KB
testcase_29 AC 1,665 ms
102,692 KB
testcase_30 AC 1,564 ms
103,008 KB
testcase_31 AC 1,373 ms
100,792 KB
testcase_32 AC 1,416 ms
101,064 KB
testcase_33 AC 61 ms
72,560 KB
testcase_34 AC 52 ms
75,776 KB
testcase_35 AC 77 ms
75,904 KB
testcase_36 AC 76 ms
76,416 KB
testcase_37 AC 66 ms
75,776 KB
testcase_38 AC 74 ms
76,032 KB
testcase_39 AC 68 ms
75,776 KB
testcase_40 AC 61 ms
73,196 KB
testcase_41 AC 75 ms
76,544 KB
testcase_42 AC 68 ms
76,160 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