結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー mkawa2mkawa2
提出日時 2021-11-12 21:43:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,059 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 137,544 KB
最終ジャッジ日時 2024-05-04 07:57:53
合計ジャッジ時間 27,613 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,992 KB
testcase_01 AC 33 ms
52,736 KB
testcase_02 AC 35 ms
52,480 KB
testcase_03 WA -
testcase_04 AC 1,096 ms
113,160 KB
testcase_05 AC 1,522 ms
123,964 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 200 ms
100,384 KB
testcase_09 AC 236 ms
102,236 KB
testcase_10 AC 743 ms
85,448 KB
testcase_11 WA -
testcase_12 AC 55 ms
72,040 KB
testcase_13 WA -
testcase_14 AC 979 ms
107,524 KB
testcase_15 AC 786 ms
116,652 KB
testcase_16 AC 936 ms
85,912 KB
testcase_17 AC 475 ms
95,228 KB
testcase_18 AC 948 ms
88,988 KB
testcase_19 AC 180 ms
81,140 KB
testcase_20 WA -
testcase_21 AC 402 ms
93,820 KB
testcase_22 AC 758 ms
111,720 KB
testcase_23 AC 1,304 ms
133,292 KB
testcase_24 AC 1,456 ms
124,104 KB
testcase_25 AC 1,482 ms
111,492 KB
testcase_26 WA -
testcase_27 AC 1,547 ms
118,716 KB
testcase_28 WA -
testcase_29 AC 1,540 ms
118,516 KB
testcase_30 AC 1,385 ms
129,796 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 66 ms
72,388 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 70 ms
76,288 KB
testcase_39 AC 57 ms
72,576 KB
testcase_40 AC 54 ms
66,944 KB
testcase_41 AC 72 ms
75,648 KB
testcase_42 AC 61 ms
71,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = 18446744073709551615
inf = 4294967295
md = 10**9+7
# md = 998244353

from heapq import *

n, a, b, x, y = LI()
hh = LI()

def ok():
    hp = []
    for h in hh:
        if h-m > 0: heappush(hp, -h+m)

    for _ in range(a):
        if not hp: break
        h = -heappop(hp)
        h -= x
        if h > 0: heappush(hp, -h)

    s = -sum(hp)
    # print(s,hp)

    return s <= y*b

l, r = 0, 10**9+1
while l+1 < r:
    m = (l+r)//2
    if ok(): r = m
    else: l = m

print(r)
0