結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー dn6049949dn6049949
提出日時 2021-11-14 21:51:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,927 ms / 3,000 ms
コード長 1,028 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 158,268 KB
最終ジャッジ日時 2024-11-30 07:13:08
合計ジャッジ時間 34,039 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,608 KB
testcase_01 AC 46 ms
54,476 KB
testcase_02 AC 45 ms
55,372 KB
testcase_03 AC 45 ms
55,660 KB
testcase_04 AC 1,348 ms
137,240 KB
testcase_05 AC 1,851 ms
146,636 KB
testcase_06 AC 578 ms
143,260 KB
testcase_07 AC 44 ms
55,920 KB
testcase_08 AC 256 ms
111,580 KB
testcase_09 AC 314 ms
123,384 KB
testcase_10 AC 889 ms
94,804 KB
testcase_11 AC 540 ms
94,764 KB
testcase_12 AC 66 ms
72,428 KB
testcase_13 AC 943 ms
123,612 KB
testcase_14 AC 1,130 ms
123,848 KB
testcase_15 AC 928 ms
140,884 KB
testcase_16 AC 1,071 ms
93,620 KB
testcase_17 AC 548 ms
105,896 KB
testcase_18 AC 1,130 ms
100,096 KB
testcase_19 AC 207 ms
85,324 KB
testcase_20 AC 205 ms
85,960 KB
testcase_21 AC 465 ms
113,404 KB
testcase_22 AC 935 ms
132,552 KB
testcase_23 AC 1,532 ms
156,164 KB
testcase_24 AC 1,773 ms
147,708 KB
testcase_25 AC 1,854 ms
135,880 KB
testcase_26 AC 1,566 ms
156,876 KB
testcase_27 AC 1,927 ms
141,076 KB
testcase_28 AC 1,592 ms
158,268 KB
testcase_29 AC 1,858 ms
141,116 KB
testcase_30 AC 1,627 ms
152,420 KB
testcase_31 AC 1,617 ms
156,752 KB
testcase_32 AC 1,858 ms
144,216 KB
testcase_33 AC 79 ms
74,284 KB
testcase_34 AC 46 ms
55,396 KB
testcase_35 AC 89 ms
76,816 KB
testcase_36 AC 88 ms
76,304 KB
testcase_37 AC 56 ms
64,316 KB
testcase_38 AC 87 ms
76,104 KB
testcase_39 AC 78 ms
76,112 KB
testcase_40 AC 72 ms
71,168 KB
testcase_41 AC 86 ms
76,864 KB
testcase_42 AC 75 ms
73,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!usr/bin/env python3
from collections import defaultdict, deque
from heapq import heappush, heappop
from itertools import permutations, accumulate
import sys
import math
import bisect
def LI(): return [int(x) for x in sys.stdin.readline().split()]
def I(): return int(sys.stdin.readline())
def IR(n):
    return [I() for _ in range(n)]
def LIR(n):
    return [LI() for _ in range(n)]

sys.setrecursionlimit(1000000)
mod = 1000000007

def main():
    def f(k):
        h = [i-k for i in h_]
        q = []
        for i in h:
            if i > 0:
                heappush(q,-i)
        for _ in range(a):
            if not q:
                break
            i = heappop(q)
            i += x
            if i < 0:
                heappush(q,i)
        s = -sum(q)
        return s <= b*y

    n,a,b,x,y = LI()
    h_ = LI()
    l = -1
    r = 10**9+1
    while l+1 < r:
        k = (l+r) >> 1
        if f(k):
            r = k
        else:
            l = k
    print(r)
    return


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