結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー H20H20
提出日時 2021-11-12 22:06:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 775 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 234,236 KB
最終ジャッジ日時 2024-11-25 18:49:40
合計ジャッジ時間 106,171 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,476 KB
testcase_01 AC 37 ms
61,084 KB
testcase_02 AC 42 ms
66,252 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 1,692 ms
175,372 KB
testcase_11 WA -
testcase_12 AC 84 ms
84,376 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 81 ms
76,416 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 88 ms
76,128 KB
testcase_39 AC 80 ms
75,832 KB
testcase_40 AC 71 ms
75,856 KB
testcase_41 AC 87 ms
76,268 KB
testcase_42 AC 80 ms
174,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

def is_ok(K):
    HH = [0]*N
    for i in range(N):
        HH[i]=H[i]-K
    HQ = []
    for i in range(N):
        heapq.heappush(HQ,(-HH[i],i))
    for _ in range(A):
        hi,i = heapq.heappop(HQ)
        HH[i]-=X
        heapq.heappush(HQ,(-HH[i],i))

    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()))

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