結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー H20H20
提出日時 2021-11-12 22:24:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 692 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 108,128 KB
最終ジャッジ日時 2024-11-25 19:29:34
合計ジャッジ時間 7,689 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,380 KB
testcase_01 AC 39 ms
53,232 KB
testcase_02 AC 37 ms
52,756 KB
testcase_03 WA -
testcase_04 AC 235 ms
93,808 KB
testcase_05 AC 276 ms
92,548 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 114 ms
83,864 KB
testcase_09 AC 143 ms
88,820 KB
testcase_10 AC 147 ms
88,608 KB
testcase_11 WA -
testcase_12 AC 57 ms
73,220 KB
testcase_13 WA -
testcase_14 AC 210 ms
87,976 KB
testcase_15 AC 215 ms
91,024 KB
testcase_16 AC 162 ms
84,704 KB
testcase_17 AC 147 ms
86,964 KB
testcase_18 AC 190 ms
86,792 KB
testcase_19 AC 129 ms
86,016 KB
testcase_20 WA -
testcase_21 AC 171 ms
94,676 KB
testcase_22 AC 200 ms
89,164 KB
testcase_23 AC 242 ms
108,128 KB
testcase_24 AC 264 ms
92,436 KB
testcase_25 AC 270 ms
91,164 KB
testcase_26 WA -
testcase_27 AC 245 ms
106,648 KB
testcase_28 WA -
testcase_29 AC 246 ms
103,812 KB
testcase_30 AC 249 ms
95,504 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 42 ms
60,420 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 45 ms
61,344 KB
testcase_39 AC 47 ms
62,704 KB
testcase_40 AC 44 ms
61,860 KB
testcase_41 AC 45 ms
60,848 KB
testcase_42 AC 45 ms
61,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

def is_ok(K):
    HH = [0]*N
    for i in range(N):
        HH[i]=H[i]-K
    y = Y*B
    j = 0
    while y>0 and j<N:
        d = min(y,HH[j])
        if d>0:
            HH[j]-=d
            y-=d
        j+=1
    return max(HH)<=0

def meguru_bisect(ok, ng):
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok


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

HQ = []
for i in range(N):
    heapq.heappush(HQ,(-H[i],i))
for _ in range(A):
    hi,i = heapq.heappop(HQ)
    H[i]-=X
    heapq.heappush(HQ,(-H[i],i))



print(meguru_bisect(10**9 + 1,0))
0