結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-14 01:59:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 653 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 125,272 KB
最終ジャッジ日時 2024-05-06 09:51:13
合計ジャッジ時間 26,397 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2,723 ms
125,272 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 746 ms
99,604 KB
testcase_09 AC 920 ms
103,168 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 102 ms
76,476 KB
testcase_13 WA -
testcase_14 AC 1,750 ms
107,864 KB
testcase_15 AC 1,431 ms
116,876 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1,376 ms
90,192 KB
testcase_19 WA -
testcase_20 AC 415 ms
83,968 KB
testcase_21 AC 678 ms
94,204 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 2,450 ms
112,128 KB
testcase_26 WA -
testcase_27 AC 2,600 ms
119,812 KB
testcase_28 WA -
testcase_29 AC 2,601 ms
120,280 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 2,599 ms
123,896 KB
testcase_33 AC 91 ms
76,160 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 100 ms
76,416 KB
testcase_39 AC 86 ms
75,904 KB
testcase_40 AC 85 ms
76,032 KB
testcase_41 AC 97 ms
76,544 KB
testcase_42 AC 83 ms
75,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def is_ok(k):
    q = []
    for h in H:
        if h > k:
            q.append(-(h-k))
    heapq.heapify(q)
    for i in range(a):
        if q:
            v = heapq.heappop(q)
            v = -v
            if v > x:
                v -= x
                heapq.heappush(q, -v)
    if not q:
        print('Yes')
        exit()
    s = 0
    while  q:
        v = heapq.heappop(q)
        v = -v
        s += v
    return  s <= y*b
    
ng = -1
ok = max(H)
while ng+1<ok:
    c = (ng+ok)//2
    if is_ok(c):
        ok = c
    else:
        ng = c
print(ok)
0