結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-14 02:02:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,732 ms / 3,000 ms
コード長 859 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 124,928 KB
最終ジャッジ日時 2024-05-06 09:57:16
合計ジャッジ時間 42,981 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 38 ms
52,864 KB
testcase_03 AC 42 ms
57,472 KB
testcase_04 AC 1,673 ms
113,332 KB
testcase_05 AC 2,732 ms
124,928 KB
testcase_06 AC 639 ms
117,952 KB
testcase_07 AC 41 ms
57,728 KB
testcase_08 AC 775 ms
99,264 KB
testcase_09 AC 896 ms
102,784 KB
testcase_10 AC 839 ms
84,808 KB
testcase_11 AC 529 ms
87,144 KB
testcase_12 AC 92 ms
76,788 KB
testcase_13 AC 1,045 ms
101,336 KB
testcase_14 AC 1,751 ms
108,980 KB
testcase_15 AC 1,432 ms
116,748 KB
testcase_16 AC 1,266 ms
85,504 KB
testcase_17 AC 764 ms
96,836 KB
testcase_18 AC 1,394 ms
90,332 KB
testcase_19 AC 247 ms
82,304 KB
testcase_20 AC 411 ms
83,968 KB
testcase_21 AC 671 ms
93,876 KB
testcase_22 AC 1,401 ms
110,824 KB
testcase_23 AC 1,553 ms
119,044 KB
testcase_24 AC 2,663 ms
124,068 KB
testcase_25 AC 2,474 ms
114,908 KB
testcase_26 AC 1,708 ms
123,072 KB
testcase_27 AC 2,615 ms
119,492 KB
testcase_28 AC 1,741 ms
122,916 KB
testcase_29 AC 2,629 ms
120,388 KB
testcase_30 AC 1,766 ms
118,608 KB
testcase_31 AC 1,861 ms
123,092 KB
testcase_32 AC 2,532 ms
123,024 KB
testcase_33 AC 80 ms
76,288 KB
testcase_34 AC 39 ms
57,728 KB
testcase_35 AC 75 ms
76,032 KB
testcase_36 AC 77 ms
76,380 KB
testcase_37 AC 55 ms
65,408 KB
testcase_38 AC 91 ms
76,032 KB
testcase_39 AC 81 ms
76,032 KB
testcase_40 AC 78 ms
76,528 KB
testcase_41 AC 90 ms
76,292 KB
testcase_42 AC 81 ms
76,416 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 = []
        for h in H:
            if h > k:
                q.append(-(h-k))
        if not q:
            return True
        heapq.heapify(q)
        for i in range(a):
            if q:
                v = heapq.heappop(q)
                v = -v
                if v > x:
                    v -= x
                    heapq.heappush(q, -v)
        if not q:
            return True
        s = 0
        while  q:
            v = heapq.heappop(q)
            v = -v
            s += v
        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