結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー puznekopuzneko
提出日時 2021-11-24 23:45:47
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 605 bytes
コンパイル時間 633 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 140,260 KB
最終ジャッジ日時 2024-06-27 09:22:58
合計ジャッジ時間 49,052 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,612 KB
testcase_01 AC 39 ms
52,696 KB
testcase_02 AC 39 ms
53,792 KB
testcase_03 AC 43 ms
58,860 KB
testcase_04 AC 1,806 ms
124,496 KB
testcase_05 AC 2,962 ms
140,116 KB
testcase_06 AC 613 ms
117,968 KB
testcase_07 AC 45 ms
59,676 KB
testcase_08 AC 853 ms
104,124 KB
testcase_09 AC 1,010 ms
107,764 KB
testcase_10 AC 931 ms
85,940 KB
testcase_11 AC 581 ms
87,572 KB
testcase_12 AC 98 ms
76,248 KB
testcase_13 AC 1,151 ms
108,868 KB
testcase_14 AC 1,987 ms
115,852 KB
testcase_15 AC 1,651 ms
132,440 KB
testcase_16 AC 1,339 ms
86,724 KB
testcase_17 AC 877 ms
99,844 KB
testcase_18 AC 1,530 ms
91,600 KB
testcase_19 AC 280 ms
83,932 KB
testcase_20 AC 442 ms
83,260 KB
testcase_21 AC 783 ms
98,260 KB
testcase_22 AC 1,585 ms
120,972 KB
testcase_23 AC 1,753 ms
132,300 KB
testcase_24 AC 2,930 ms
140,260 KB
testcase_25 AC 2,789 ms
123,616 KB
testcase_26 AC 1,862 ms
138,628 KB
testcase_27 TLE -
testcase_28 AC 1,934 ms
138,192 KB
testcase_29 AC 2,992 ms
132,000 KB
testcase_30 AC 2,036 ms
130,632 KB
testcase_31 AC 2,125 ms
135,772 KB
testcase_32 TLE -
testcase_33 AC 92 ms
76,408 KB
testcase_34 AC 45 ms
58,768 KB
testcase_35 AC 83 ms
76,520 KB
testcase_36 AC 83 ms
75,920 KB
testcase_37 AC 56 ms
64,500 KB
testcase_38 AC 98 ms
75,996 KB
testcase_39 AC 86 ms
75,808 KB
testcase_40 AC 75 ms
73,916 KB
testcase_41 AC 98 ms
76,136 KB
testcase_42 AC 88 ms
76,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
from heapq import heappush, heappop

n, a, b, x, y, *h = map(int, stdin.read().split())
left = -1
right = 10**9+1
while right - left >= 2:
    mid = (right + left) // 2
    hq = []
    for i in range(n):
        if h[i] - mid > 0:
            heappush(hq, -(h[i]-mid))
    for i in range(a):
        if hq:
            now = -heappop(hq)
            if now > x:
                kari = now - x
                heappush(hq, -kari)
    kari = 0
    while hq:
        kari += -heappop(hq)
    if kari <= b * y:
        right = mid
    else:
        left = mid

print("{}".format(right))
0