結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー ShirotsumeShirotsume
提出日時 2021-10-28 23:47:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 947 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 115,280 KB
最終ジャッジ日時 2024-05-04 04:16:55
合計ジャッジ時間 7,732 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 53 ms
60,416 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 207 ms
103,328 KB
testcase_07 AC 57 ms
60,160 KB
testcase_08 AC 120 ms
84,224 KB
testcase_09 AC 137 ms
90,240 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 59 ms
67,456 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 94 ms
78,464 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 263 ms
102,856 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 259 ms
105,600 KB
testcase_32 AC 275 ms
115,280 KB
testcase_33 WA -
testcase_34 AC 52 ms
63,232 KB
testcase_35 AC 62 ms
65,024 KB
testcase_36 AC 59 ms
65,408 KB
testcase_37 AC 59 ms
63,744 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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.appendleft(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 = -1

    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