結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー Shirotsume
提出日時 2021-10-28 23:42:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,757 ms / 3,000 ms
コード長 747 bytes
コンパイル時間 589 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 102,640 KB
最終ジャッジ日時 2024-11-25 11:07:09
合計ジャッジ時間 32,642 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

n, a, b, x, y = map(int,input().split())
h = list(map(int,input().split()))
def solve(n, a, b, x, y, h):
    from collections import deque
    def check(k):
        import heapq
        h2 = [0] * n
        for i in range(n):
            h2[i] = min(0, k - h[i])
        heapq.heapify(h2)       
        
        for i in range(a):
            now = heapq.heappop(h2)
            now = min(0, now + x)
            heapq.heappush(h2, now)
        if sum(h2) >= - 1 * b * y:
            return True
        else:
            return False

    ok = 10 ** 9
    ng = -1

    while abs(ok - ng) > 1:
        mid = (ok + ng) // 2
        if check(mid):
            ok = mid
        else:
            ng = mid
    return ok
print(solve(n, a, b, x, y, h))
0