結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー rlangevinrlangevin
提出日時 2023-05-11 08:58:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,495 ms / 3,000 ms
コード長 665 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 122,012 KB
最終ジャッジ日時 2024-05-05 12:10:54
合計ジャッジ時間 18,597 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 1,320 ms
103,300 KB
testcase_05 AC 709 ms
108,752 KB
testcase_06 AC 109 ms
96,896 KB
testcase_07 AC 38 ms
52,864 KB
testcase_08 AC 246 ms
93,572 KB
testcase_09 AC 306 ms
95,668 KB
testcase_10 AC 580 ms
85,840 KB
testcase_11 AC 116 ms
79,872 KB
testcase_12 AC 82 ms
76,032 KB
testcase_13 AC 140 ms
87,528 KB
testcase_14 AC 495 ms
98,952 KB
testcase_15 AC 929 ms
104,332 KB
testcase_16 AC 516 ms
84,480 KB
testcase_17 AC 573 ms
92,716 KB
testcase_18 AC 318 ms
87,356 KB
testcase_19 AC 236 ms
84,224 KB
testcase_20 AC 85 ms
78,208 KB
testcase_21 AC 492 ms
93,824 KB
testcase_22 AC 868 ms
101,468 KB
testcase_23 AC 1,495 ms
122,012 KB
testcase_24 AC 1,122 ms
108,556 KB
testcase_25 AC 475 ms
101,720 KB
testcase_26 AC 169 ms
97,200 KB
testcase_27 AC 482 ms
105,572 KB
testcase_28 AC 164 ms
97,024 KB
testcase_29 AC 624 ms
105,104 KB
testcase_30 AC 1,425 ms
118,804 KB
testcase_31 AC 165 ms
97,024 KB
testcase_32 AC 128 ms
96,896 KB
testcase_33 AC 60 ms
66,176 KB
testcase_34 AC 38 ms
52,608 KB
testcase_35 AC 38 ms
52,992 KB
testcase_36 AC 38 ms
52,224 KB
testcase_37 AC 37 ms
52,480 KB
testcase_38 AC 82 ms
76,288 KB
testcase_39 AC 74 ms
75,520 KB
testcase_40 AC 66 ms
68,608 KB
testcase_41 AC 80 ms
76,288 KB
testcase_42 AC 67 ms
69,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

def check(m):
    L = []
    for h in H:
        if h - m > 0:
            L.append(-h + m)
    heapify(L)
    AA = A
    while AA and L:
        v = -heappop(L)
        if v >= X:
            n = min(AA, v//X)
            v -= X * n
            AA -= n
            if v:
                heappush(L, -v)
        else:
            AA -= 1
    L.append(0)
    return -sum(L) <= B * Y


N, A, B, X, Y = map(int, input().split())
H = list(map(int, input().split()))

if check(0):
    print(0)
    exit()
no = 0
yes = 10 ** 9 + 5
while yes - no != 1:
    mid = (yes + no)//2
    if check(mid):
        yes = mid
    else:
        no = mid
print(yes)
0