結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー ShirotsumeShirotsume
提出日時 2021-10-30 14:32:57
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,000 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 119,596 KB
最終ジャッジ日時 2024-05-04 04:20:04
合計ジャッジ時間 7,340 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,888 KB
testcase_01 AC 34 ms
54,016 KB
testcase_02 AC 35 ms
53,632 KB
testcase_03 WA -
testcase_04 AC 239 ms
100,688 KB
testcase_05 AC 294 ms
119,444 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 89 ms
84,352 KB
testcase_09 AC 108 ms
90,112 KB
testcase_10 AC 155 ms
82,560 KB
testcase_11 WA -
testcase_12 AC 48 ms
67,072 KB
testcase_13 WA -
testcase_14 AC 183 ms
94,844 KB
testcase_15 AC 176 ms
93,440 KB
testcase_16 AC 183 ms
87,416 KB
testcase_17 AC 117 ms
82,692 KB
testcase_18 AC 173 ms
89,140 KB
testcase_19 AC 86 ms
82,776 KB
testcase_20 WA -
testcase_21 AC 126 ms
90,368 KB
testcase_22 AC 165 ms
91,436 KB
testcase_23 AC 230 ms
102,584 KB
testcase_24 AC 283 ms
118,660 KB
testcase_25 AC 252 ms
109,956 KB
testcase_26 WA -
testcase_27 AC 274 ms
115,452 KB
testcase_28 WA -
testcase_29 AC 293 ms
117,180 KB
testcase_30 AC 274 ms
109,372 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 44 ms
62,336 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 46 ms
62,976 KB
testcase_39 AC 45 ms
63,488 KB
testcase_40 AC 40 ms
61,568 KB
testcase_41 AC 45 ms
63,616 KB
testcase_42 AC 46 ms
64,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
n, a, b, x, y = map(int,input().split())
h = list(map(int,input().split()))
def solve(n, a, b, x, y, h):
    h.sort()
    from collections import deque
    def check(k):
        q1 = deque()
        q2 = deque()
        for i in range(n):
            q1.append(max(h[i] - k, 0))
        for _ in range(a):
            now = 0
            if not q1:
                now = q2.popleft()
            elif not q2:
                now = q1.pop()
            
            elif q1[-1] >= q2[0]:
                now = q1.pop()
            else:
                now = q2.popleft()
            now = max(now - x, 0)
            q2.append(now)
        if sum(q1) + sum(q2) <= b * y:
            return True
        else:
            return False
    ok = 10 ** 9
    ng = 0

    while abs(ok - ng) > 1:
        mid = (ok + ng) // 2
        if check(mid):
            ok = mid
        else:
            ng = mid
    return ok
print(solve(n, a, b, x, y, h))
0