結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー lloyzlloyz
提出日時 2021-11-12 23:14:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 530 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,400 KB
最終ジャッジ日時 2024-11-25 21:27:18
合計ジャッジ時間 88,231 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,000 KB
testcase_01 AC 27 ms
17,700 KB
testcase_02 AC 26 ms
16,000 KB
testcase_03 WA -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 WA -
testcase_08 AC 991 ms
22,152 KB
testcase_09 AC 1,441 ms
41,688 KB
testcase_10 AC 2,829 ms
20,140 KB
testcase_11 WA -
testcase_12 AC 153 ms
16,896 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,794 ms
37,716 KB
testcase_18 TLE -
testcase_19 AC 1,017 ms
37,776 KB
testcase_20 WA -
testcase_21 AC 2,025 ms
40,972 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 29 ms
10,752 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 36 ms
10,752 KB
testcase_39 AC 44 ms
10,880 KB
testcase_40 AC 33 ms
10,752 KB
testcase_41 AC 36 ms
10,752 KB
testcase_42 AC 31 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush

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

left = 0
right = 10**9 + 1
while right - left > 1:
    mid = (left + right) // 2
    Hc = [0 for _ in range(n)]
    for i in range(n):
        Hc[i] = min(0, mid - H[i])
    heapify(Hc)
    for i in range(a):
        curr = heappop(Hc)
        curr = min(0, curr + x)
        heappush(Hc, curr)
    if -sum(Hc) <= b * y:
        right = mid
    else:
        left = mid
print(right)
0