結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-14 02:00:25
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 633 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 125,588 KB
最終ジャッジ日時 2024-11-28 15:40:18
合計ジャッジ時間 47,239 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,808 KB
testcase_01 AC 40 ms
53,912 KB
testcase_02 AC 41 ms
53,552 KB
testcase_03 AC 43 ms
58,412 KB
testcase_04 AC 1,858 ms
113,988 KB
testcase_05 TLE -
testcase_06 AC 697 ms
118,216 KB
testcase_07 AC 42 ms
57,964 KB
testcase_08 AC 850 ms
99,820 KB
testcase_09 AC 995 ms
103,120 KB
testcase_10 AC 920 ms
85,620 KB
testcase_11 AC 580 ms
87,052 KB
testcase_12 AC 100 ms
76,312 KB
testcase_13 AC 1,123 ms
99,308 KB
testcase_14 AC 1,961 ms
109,080 KB
testcase_15 AC 1,583 ms
117,212 KB
testcase_16 AC 1,302 ms
85,384 KB
testcase_17 AC 861 ms
97,044 KB
testcase_18 AC 1,521 ms
90,272 KB
testcase_19 AC 286 ms
82,292 KB
testcase_20 AC 449 ms
83,828 KB
testcase_21 AC 744 ms
93,740 KB
testcase_22 AC 1,554 ms
113,616 KB
testcase_23 AC 1,679 ms
119,988 KB
testcase_24 AC 2,882 ms
124,508 KB
testcase_25 AC 2,756 ms
112,980 KB
testcase_26 AC 1,885 ms
122,584 KB
testcase_27 AC 2,971 ms
120,624 KB
testcase_28 AC 1,913 ms
123,564 KB
testcase_29 AC 2,907 ms
120,496 KB
testcase_30 AC 2,016 ms
119,104 KB
testcase_31 AC 2,089 ms
122,684 KB
testcase_32 AC 2,894 ms
123,668 KB
testcase_33 AC 85 ms
76,412 KB
testcase_34 AC 43 ms
59,224 KB
testcase_35 AC 81 ms
76,188 KB
testcase_36 AC 72 ms
73,592 KB
testcase_37 AC 57 ms
64,900 KB
testcase_38 AC 95 ms
76,004 KB
testcase_39 AC 82 ms
75,628 KB
testcase_40 AC 79 ms
75,820 KB
testcase_41 AC 93 ms
76,608 KB
testcase_42 AC 77 ms
74,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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