結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-12 22:22:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,744 ms / 3,000 ms
コード長 520 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 103,288 KB
最終ジャッジ日時 2024-11-25 19:27:33
合計ジャッジ時間 32,463 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,876 KB
testcase_01 AC 38 ms
53,840 KB
testcase_02 AC 38 ms
54,284 KB
testcase_03 AC 55 ms
63,564 KB
testcase_04 AC 1,350 ms
102,888 KB
testcase_05 AC 1,744 ms
102,392 KB
testcase_06 AC 846 ms
101,164 KB
testcase_07 AC 53 ms
63,588 KB
testcase_08 AC 324 ms
93,084 KB
testcase_09 AC 429 ms
97,384 KB
testcase_10 AC 924 ms
87,008 KB
testcase_11 AC 717 ms
84,308 KB
testcase_12 AC 52 ms
66,256 KB
testcase_13 AC 879 ms
92,836 KB
testcase_14 AC 1,169 ms
95,616 KB
testcase_15 AC 995 ms
102,724 KB
testcase_16 AC 1,058 ms
83,580 KB
testcase_17 AC 586 ms
89,184 KB
testcase_18 AC 1,171 ms
89,384 KB
testcase_19 AC 248 ms
82,628 KB
testcase_20 AC 233 ms
78,928 KB
testcase_21 AC 554 ms
93,624 KB
testcase_22 AC 950 ms
100,212 KB
testcase_23 AC 1,451 ms
103,100 KB
testcase_24 AC 1,624 ms
102,000 KB
testcase_25 AC 1,733 ms
102,668 KB
testcase_26 AC 1,382 ms
101,312 KB
testcase_27 AC 1,697 ms
102,148 KB
testcase_28 AC 1,419 ms
100,940 KB
testcase_29 AC 1,708 ms
102,772 KB
testcase_30 AC 1,515 ms
103,288 KB
testcase_31 AC 1,466 ms
101,676 KB
testcase_32 AC 1,632 ms
101,876 KB
testcase_33 AC 60 ms
68,020 KB
testcase_34 AC 58 ms
75,776 KB
testcase_35 AC 73 ms
75,916 KB
testcase_36 AC 80 ms
76,140 KB
testcase_37 AC 65 ms
75,980 KB
testcase_38 AC 65 ms
70,364 KB
testcase_39 AC 55 ms
66,012 KB
testcase_40 AC 55 ms
62,836 KB
testcase_41 AC 66 ms
69,776 KB
testcase_42 AC 62 ms
67,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def solve(k):
    task = [min(k-h, 0) for h in H]
    task.sort()
    S = -sum(task)
    for _ in range(A):
        v = -hq.heappop(task)
        if v >= X:
            S -= X
            v -= X
        else:
            S -= v
            v = 0
        hq.heappush(task, -v)
    return S <= B*Y


ng, ok = -1, 10**9
while ok-ng > 1:
    m = (ng+ok)//2
    if solve(m):
        ok = m
    else:
        ng = m

print(ok)
0