結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-14 02:10:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,085 ms / 3,000 ms
コード長 574 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 102,112 KB
最終ジャッジ日時 2024-05-06 10:11:23
合計ジャッジ時間 35,939 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,900 KB
testcase_01 AC 39 ms
52,884 KB
testcase_02 AC 40 ms
53,716 KB
testcase_03 AC 48 ms
59,996 KB
testcase_04 AC 1,512 ms
102,112 KB
testcase_05 AC 2,007 ms
101,972 KB
testcase_06 AC 1,046 ms
100,072 KB
testcase_07 AC 47 ms
61,472 KB
testcase_08 AC 278 ms
90,008 KB
testcase_09 AC 384 ms
97,324 KB
testcase_10 AC 994 ms
86,536 KB
testcase_11 AC 640 ms
83,784 KB
testcase_12 AC 96 ms
76,304 KB
testcase_13 AC 985 ms
92,708 KB
testcase_14 AC 1,226 ms
95,288 KB
testcase_15 AC 986 ms
101,052 KB
testcase_16 AC 1,129 ms
83,716 KB
testcase_17 AC 585 ms
89,784 KB
testcase_18 AC 1,301 ms
89,096 KB
testcase_19 AC 310 ms
88,992 KB
testcase_20 AC 218 ms
81,352 KB
testcase_21 AC 618 ms
97,464 KB
testcase_22 AC 1,003 ms
99,520 KB
testcase_23 AC 1,651 ms
101,956 KB
testcase_24 AC 1,809 ms
101,836 KB
testcase_25 AC 2,085 ms
101,720 KB
testcase_26 AC 1,642 ms
101,316 KB
testcase_27 AC 2,060 ms
101,568 KB
testcase_28 AC 1,610 ms
100,952 KB
testcase_29 AC 1,904 ms
101,708 KB
testcase_30 AC 1,720 ms
101,828 KB
testcase_31 AC 1,655 ms
101,072 KB
testcase_32 AC 1,870 ms
101,328 KB
testcase_33 AC 69 ms
73,020 KB
testcase_34 AC 61 ms
75,632 KB
testcase_35 AC 91 ms
76,160 KB
testcase_36 AC 88 ms
75,988 KB
testcase_37 AC 74 ms
75,684 KB
testcase_38 AC 90 ms
76,152 KB
testcase_39 AC 77 ms
75,404 KB
testcase_40 AC 69 ms
72,820 KB
testcase_41 AC 90 ms
76,616 KB
testcase_42 AC 78 ms
76,216 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)
            heapq.heappush(q, min(0, v+x))
        return  -sum(q) <= 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