結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー hir355
提出日時 2021-11-12 21:57:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 305 ms / 3,000 ms
コード長 564 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 202,744 KB
最終ジャッジ日時 2024-11-25 18:23:59
合計ジャッジ時間 8,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappush, heappop
n, a, b, x, y = map(int, input().split())
h = list(map(lambda x:-int(x), input().split()))
heapify(h)
for i in range(a):
    xx = -heappop(h)
    xx -= x
    heappush(h, -xx)
h = list(map(lambda x:-x, h))
l, r = -1, 1000000000
while r - l > 1:
    m = (l + r) // 2
    hh = list(map(lambda x:x-m, h))
    t = b * y
    for i in range(n):
        d = max(0, min(hh[i], t))
        hh[i] -= d
        t -= d
    for i in range(n):
        if hh[i] > 0:
            l = m
            break
    else:
        r = m
print(r)
0