結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー horitaka1999horitaka1999
提出日時 2021-11-12 22:26:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,577 ms / 3,000 ms
コード長 632 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 161,988 KB
最終ジャッジ日時 2024-05-04 09:35:54
合計ジャッジ時間 28,475 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,600 KB
testcase_01 AC 35 ms
53,072 KB
testcase_02 AC 37 ms
54,016 KB
testcase_03 AC 35 ms
52,948 KB
testcase_04 AC 1,171 ms
143,560 KB
testcase_05 AC 1,466 ms
150,472 KB
testcase_06 AC 517 ms
148,464 KB
testcase_07 AC 36 ms
53,200 KB
testcase_08 AC 231 ms
114,724 KB
testcase_09 AC 293 ms
128,288 KB
testcase_10 AC 729 ms
98,036 KB
testcase_11 AC 475 ms
96,388 KB
testcase_12 AC 71 ms
76,276 KB
testcase_13 AC 806 ms
123,348 KB
testcase_14 AC 976 ms
126,464 KB
testcase_15 AC 813 ms
144,400 KB
testcase_16 AC 933 ms
93,156 KB
testcase_17 AC 507 ms
108,892 KB
testcase_18 AC 966 ms
103,504 KB
testcase_19 AC 219 ms
90,836 KB
testcase_20 AC 194 ms
87,936 KB
testcase_21 AC 455 ms
119,924 KB
testcase_22 AC 809 ms
136,848 KB
testcase_23 AC 1,304 ms
161,096 KB
testcase_24 AC 1,477 ms
149,560 KB
testcase_25 AC 1,468 ms
140,228 KB
testcase_26 AC 1,328 ms
161,988 KB
testcase_27 AC 1,577 ms
144,880 KB
testcase_28 AC 1,308 ms
161,844 KB
testcase_29 AC 1,546 ms
144,476 KB
testcase_30 AC 1,380 ms
153,064 KB
testcase_31 AC 1,361 ms
160,324 KB
testcase_32 AC 1,546 ms
146,396 KB
testcase_33 AC 67 ms
73,388 KB
testcase_34 AC 34 ms
53,184 KB
testcase_35 AC 76 ms
76,472 KB
testcase_36 AC 74 ms
75,908 KB
testcase_37 AC 45 ms
62,428 KB
testcase_38 AC 72 ms
76,212 KB
testcase_39 AC 67 ms
75,848 KB
testcase_40 AC 60 ms
70,460 KB
testcase_41 AC 73 ms
76,096 KB
testcase_42 AC 68 ms
72,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
N,A,B,X,Y = map(int,input().split())
H = list(map(int,input().split()))
def is_ok(nH,nA):
    q = []
    for h in nH:
        if h > 0:
            heappush(q,-h)
    while nA and q:
        h = heappop(q)
        h *= -1
        if h > X:
            heappush(q,-(h-X))
        nA -=1
    SUMS = 0
    for h in q:
        SUMS += -h
    if SUMS <= Y * B:
        return True
    else:
        return False
ok = 10 ** 9
ng = -1
while ok - ng > 1:
    x = (ng+ok)//2
    nH = []
    for i in range(N):
        nH.append(H[i]-x)
    if is_ok(nH,A):
        ok = x
    else:
        ng = x
print(ok)
0