結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー H20H20
提出日時 2021-11-12 22:08:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 747 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 172,144 KB
最終ジャッジ日時 2024-11-25 18:55:54
合計ジャッジ時間 103,551 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,156 KB
testcase_01 AC 41 ms
144,080 KB
testcase_02 AC 43 ms
65,296 KB
testcase_03 WA -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 WA -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 173 ms
95,748 KB
testcase_11 WA -
testcase_12 AC 60 ms
79,444 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
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 52 ms
62,332 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 55 ms
62,696 KB
testcase_39 AC 58 ms
66,184 KB
testcase_40 AC 53 ms
62,264 KB
testcase_41 AC 53 ms
62,644 KB
testcase_42 AC 51 ms
62,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

def is_ok(K):
    HH = [0]*N
    for i in range(N):
        HH[i]=H[i]-K

    for i in range(B):
        y = Y
        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