結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー AEnAEn
提出日時 2022-12-06 21:16:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,851 ms / 3,000 ms
コード長 620 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 134,388 KB
最終ジャッジ日時 2024-10-13 09:13:17
合計ジャッジ時間 33,404 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 44 ms
52,224 KB
testcase_02 AC 43 ms
52,480 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 1,292 ms
114,172 KB
testcase_05 AC 1,712 ms
124,788 KB
testcase_06 AC 542 ms
120,432 KB
testcase_07 AC 40 ms
52,608 KB
testcase_08 AC 260 ms
96,156 KB
testcase_09 AC 292 ms
101,652 KB
testcase_10 AC 852 ms
85,888 KB
testcase_11 AC 527 ms
88,832 KB
testcase_12 AC 71 ms
71,040 KB
testcase_13 AC 924 ms
111,100 KB
testcase_14 AC 1,115 ms
107,588 KB
testcase_15 AC 887 ms
115,836 KB
testcase_16 AC 1,067 ms
86,528 KB
testcase_17 AC 558 ms
96,244 KB
testcase_18 AC 1,100 ms
88,812 KB
testcase_19 AC 220 ms
81,536 KB
testcase_20 AC 216 ms
82,176 KB
testcase_21 AC 453 ms
94,208 KB
testcase_22 AC 930 ms
114,600 KB
testcase_23 AC 1,551 ms
133,116 KB
testcase_24 AC 1,690 ms
124,544 KB
testcase_25 AC 1,792 ms
111,956 KB
testcase_26 AC 1,498 ms
134,264 KB
testcase_27 AC 1,851 ms
118,152 KB
testcase_28 AC 1,522 ms
133,500 KB
testcase_29 AC 1,766 ms
118,272 KB
testcase_30 AC 1,548 ms
126,804 KB
testcase_31 AC 1,528 ms
134,388 KB
testcase_32 AC 1,759 ms
122,764 KB
testcase_33 AC 78 ms
71,808 KB
testcase_34 AC 41 ms
52,736 KB
testcase_35 AC 88 ms
75,904 KB
testcase_36 AC 89 ms
75,392 KB
testcase_37 AC 53 ms
61,184 KB
testcase_38 AC 87 ms
76,288 KB
testcase_39 AC 75 ms
73,216 KB
testcase_40 AC 67 ms
66,944 KB
testcase_41 AC 89 ms
75,904 KB
testcase_42 AC 79 ms
71,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

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

def judge(k):
    q = []
    sm = 0
    for i in range(N):
        if H[i]>k:
            heappush(q,-H[i]+k)
            sm += H[i]-k
    cnt = A
    while q and cnt>0:
        v = -heappop(q)
        if v>X:
            sm -= X
            heappush(q,-v+X)
        else:
            sm -= v
        cnt -= 1
    if sm<=B*Y:
        return True
    else:
        return False

ok, ng = 10**9,-1
while ok-ng>1:
    mid = (ok+ng)//2
    if judge(mid):
        ok = mid
    else:
        ng = mid
print(ok)
0