結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー mkawa2mkawa2
提出日時 2021-11-12 21:49:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,370 ms / 3,000 ms
コード長 1,149 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 136,448 KB
最終ジャッジ日時 2024-05-04 08:14:45
合計ジャッジ時間 20,531 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 37 ms
52,864 KB
testcase_03 AC 43 ms
52,736 KB
testcase_04 AC 1,141 ms
114,508 KB
testcase_05 AC 609 ms
124,460 KB
testcase_06 AC 471 ms
119,300 KB
testcase_07 AC 36 ms
52,864 KB
testcase_08 AC 210 ms
100,676 KB
testcase_09 AC 251 ms
101,784 KB
testcase_10 AC 535 ms
85,888 KB
testcase_11 AC 492 ms
88,644 KB
testcase_12 AC 58 ms
71,680 KB
testcase_13 AC 819 ms
109,988 KB
testcase_14 AC 415 ms
106,056 KB
testcase_15 AC 821 ms
117,192 KB
testcase_16 AC 457 ms
86,144 KB
testcase_17 AC 491 ms
95,356 KB
testcase_18 AC 259 ms
88,380 KB
testcase_19 AC 204 ms
81,256 KB
testcase_20 AC 154 ms
82,036 KB
testcase_21 AC 445 ms
94,076 KB
testcase_22 AC 790 ms
111,360 KB
testcase_23 AC 1,344 ms
133,480 KB
testcase_24 AC 1,005 ms
125,180 KB
testcase_25 AC 359 ms
111,808 KB
testcase_26 AC 1,273 ms
133,280 KB
testcase_27 AC 437 ms
119,544 KB
testcase_28 AC 1,341 ms
136,448 KB
testcase_29 AC 533 ms
117,068 KB
testcase_30 AC 1,311 ms
129,404 KB
testcase_31 AC 1,370 ms
133,448 KB
testcase_32 AC 520 ms
123,740 KB
testcase_33 AC 54 ms
66,816 KB
testcase_34 AC 36 ms
52,992 KB
testcase_35 AC 72 ms
76,160 KB
testcase_36 AC 61 ms
68,992 KB
testcase_37 AC 46 ms
61,312 KB
testcase_38 AC 74 ms
76,416 KB
testcase_39 AC 59 ms
72,192 KB
testcase_40 AC 55 ms
66,432 KB
testcase_41 AC 71 ms
76,032 KB
testcase_42 AC 75 ms
71,040 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(a):
    hp = []
    for h in hh:
        if h-m > 0: heappush(hp, -h+m)

    while a and hp:
        h = -heappop(hp)
        if h < x:
            a -= 1
        else:
            cur = min(a, h//x)
            h -= x*cur
            a -= cur
            if h > 0: heappush(hp, -h)

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

    return s <= y*b

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

print(r)
0