結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-14 02:08:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,582 ms / 3,000 ms
コード長 708 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 118,148 KB
最終ジャッジ日時 2024-05-06 10:07:37
合計ジャッジ時間 48,900 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 41 ms
53,120 KB
testcase_03 AC 49 ms
60,032 KB
testcase_04 AC 2,176 ms
117,384 KB
testcase_05 AC 2,537 ms
118,148 KB
testcase_06 AC 1,213 ms
111,836 KB
testcase_07 AC 50 ms
59,936 KB
testcase_08 AC 729 ms
96,088 KB
testcase_09 AC 1,025 ms
108,348 KB
testcase_10 AC 1,167 ms
89,260 KB
testcase_11 AC 877 ms
84,744 KB
testcase_12 AC 157 ms
76,800 KB
testcase_13 AC 1,383 ms
96,088 KB
testcase_14 AC 1,703 ms
104,300 KB
testcase_15 AC 1,707 ms
114,688 KB
testcase_16 AC 1,216 ms
84,760 KB
testcase_17 AC 931 ms
93,732 KB
testcase_18 AC 1,452 ms
91,964 KB
testcase_19 AC 633 ms
93,644 KB
testcase_20 AC 373 ms
83,072 KB
testcase_21 AC 1,197 ms
109,372 KB
testcase_22 AC 1,703 ms
111,980 KB
testcase_23 AC 2,304 ms
117,040 KB
testcase_24 AC 2,424 ms
116,996 KB
testcase_25 AC 2,438 ms
116,052 KB
testcase_26 AC 2,265 ms
116,236 KB
testcase_27 AC 2,547 ms
116,600 KB
testcase_28 AC 2,296 ms
115,336 KB
testcase_29 AC 2,406 ms
116,348 KB
testcase_30 AC 2,315 ms
117,436 KB
testcase_31 AC 2,259 ms
115,784 KB
testcase_32 AC 2,582 ms
116,616 KB
testcase_33 AC 86 ms
76,032 KB
testcase_34 AC 66 ms
75,780 KB
testcase_35 AC 94 ms
76,160 KB
testcase_36 AC 86 ms
75,648 KB
testcase_37 AC 77 ms
75,808 KB
testcase_38 AC 102 ms
76,288 KB
testcase_39 AC 100 ms
76,348 KB
testcase_40 AC 89 ms
76,032 KB
testcase_41 AC 105 ms
76,420 KB
testcase_42 AC 95 ms
76,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():

    n, a, b, x, y = map(int, input().split())
    H = list(map(int, input().split()))
    import heapq

    def is_ok(k):
        q = [0]*n
        for i, h in enumerate(H):
            q[i] = min(0, k-h)
        heapq.heapify(q)
        for i in range(a):
            v = heapq.heappop(q)
            v = -v
            v -= x
            heapq.heappush(q, -v)
        s = 0
        while  q:
            v = heapq.heappop(q)
            v = -v
            s += max(v, 0)
        return  s <= y*b

    ng = -1
    ok = max(H)
    while ng+1<ok:
        c = (ng+ok)//2
        if is_ok(c):
            ok = c
        else:
            ng = c
    print(ok)

if __name__ == '__main__':
    main()
0