結果

問題 No.1736 Princess vs. Dragoness
ユーザー ShirotsumeShirotsume
提出日時 2021-10-13 00:22:20
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 741 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 76,700 KB
最終ジャッジ日時 2024-11-25 10:52:54
合計ジャッジ時間 3,081 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

def solveac(n, a, b, x, y, h):
    for i in range(a):
        target = h.index(max(h))
        h[target] -= x
    for i in range(b):
        p = y
        for j in range(n):
            d = min(h[j], p)
            p -= d
            h[j] -= d
    if max(h) <= 0:
        return 'Yes'
    else:
        return 'No'

def solveNlogN(n, a, b, x, y, h):
    import heapq
    hm = [-x for x in h]
    heapq.heapify(hm)
    for i in range(a):
        target = heapq.heappop(hm)
        target += x
        heapq.heappush(hm, target)
    h = [-x for x in hm]
    if sum(h) <= b * y:
        return 'Yes'
    else:
        return 'No'

n, a, b, x, y = map(int,input().split())
h = list(map(int,input().split()))
print(solveNlogN(n, a, b, x, y, h))

0