結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー kaeru82433413kaeru82433413
提出日時 2021-11-12 21:48:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,076 ms / 3,000 ms
コード長 512 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 107,760 KB
最終ジャッジ日時 2024-11-25 17:59:46
合計ジャッジ時間 37,288 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,316 KB
testcase_01 AC 39 ms
53,380 KB
testcase_02 AC 42 ms
53,164 KB
testcase_03 AC 54 ms
62,964 KB
testcase_04 AC 1,501 ms
107,212 KB
testcase_05 AC 1,852 ms
107,260 KB
testcase_06 AC 1,082 ms
107,064 KB
testcase_07 AC 55 ms
62,016 KB
testcase_08 AC 289 ms
93,308 KB
testcase_09 AC 408 ms
102,412 KB
testcase_10 AC 1,047 ms
88,108 KB
testcase_11 AC 831 ms
85,016 KB
testcase_12 AC 109 ms
76,656 KB
testcase_13 AC 1,004 ms
96,664 KB
testcase_14 AC 1,245 ms
100,064 KB
testcase_15 AC 981 ms
106,588 KB
testcase_16 AC 1,131 ms
84,920 KB
testcase_17 AC 600 ms
91,552 KB
testcase_18 AC 1,280 ms
92,300 KB
testcase_19 AC 373 ms
92,412 KB
testcase_20 AC 231 ms
83,376 KB
testcase_21 AC 666 ms
102,612 KB
testcase_22 AC 1,045 ms
103,608 KB
testcase_23 AC 1,706 ms
106,412 KB
testcase_24 AC 1,799 ms
107,760 KB
testcase_25 AC 2,053 ms
107,232 KB
testcase_26 AC 1,608 ms
106,716 KB
testcase_27 AC 2,076 ms
107,164 KB
testcase_28 AC 1,697 ms
106,868 KB
testcase_29 AC 1,956 ms
107,128 KB
testcase_30 AC 1,800 ms
106,468 KB
testcase_31 AC 1,724 ms
105,680 KB
testcase_32 AC 1,901 ms
106,740 KB
testcase_33 AC 71 ms
73,028 KB
testcase_34 AC 65 ms
75,384 KB
testcase_35 AC 81 ms
75,944 KB
testcase_36 AC 78 ms
76,064 KB
testcase_37 AC 73 ms
75,784 KB
testcase_38 AC 88 ms
76,384 KB
testcase_39 AC 79 ms
75,696 KB
testcase_40 AC 71 ms
74,412 KB
testcase_41 AC 89 ms
76,544 KB
testcase_42 AC 78 ms
76,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop as pop, heappush as push, heapify

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

def solve(k):
    hh = list(map(lambda x: -(x-k), H))
    heapify(hh)
    for _ in range(A):
        h = -pop(hh)
        h -= X
        push(hh, -h)
    remain = 0
    for h in hh:
        remain += max(0, -h)
    return remain <= Y*B

ok, ng = max(H), -1
while abs(ok-ng) > 1:
    mid = (ok+ng)//2
    if solve(mid):
        ok = mid
    else:
        ng = mid
print(ok)
0