結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー ShirotsumeShirotsume
提出日時 2021-10-28 23:59:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 361 ms / 3,000 ms
コード長 944 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 119,320 KB
最終ジャッジ日時 2024-05-04 04:16:01
合計ジャッジ時間 9,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,016 KB
testcase_01 AC 47 ms
54,016 KB
testcase_02 AC 46 ms
54,016 KB
testcase_03 AC 58 ms
60,160 KB
testcase_04 AC 300 ms
100,368 KB
testcase_05 AC 354 ms
119,320 KB
testcase_06 AC 237 ms
102,124 KB
testcase_07 AC 55 ms
60,160 KB
testcase_08 AC 119 ms
84,224 KB
testcase_09 AC 145 ms
90,368 KB
testcase_10 AC 204 ms
82,816 KB
testcase_11 AC 164 ms
80,000 KB
testcase_12 AC 65 ms
66,816 KB
testcase_13 AC 208 ms
88,236 KB
testcase_14 AC 237 ms
94,472 KB
testcase_15 AC 216 ms
93,056 KB
testcase_16 AC 229 ms
87,168 KB
testcase_17 AC 149 ms
82,560 KB
testcase_18 AC 222 ms
89,296 KB
testcase_19 AC 115 ms
82,560 KB
testcase_20 AC 103 ms
78,464 KB
testcase_21 AC 155 ms
90,240 KB
testcase_22 AC 210 ms
90,788 KB
testcase_23 AC 294 ms
101,892 KB
testcase_24 AC 360 ms
118,536 KB
testcase_25 AC 313 ms
110,424 KB
testcase_26 AC 361 ms
107,136 KB
testcase_27 AC 324 ms
115,460 KB
testcase_28 AC 316 ms
107,516 KB
testcase_29 AC 344 ms
117,056 KB
testcase_30 AC 322 ms
108,864 KB
testcase_31 AC 316 ms
110,404 KB
testcase_32 AC 347 ms
119,128 KB
testcase_33 AC 58 ms
61,568 KB
testcase_34 AC 56 ms
61,056 KB
testcase_35 AC 65 ms
64,896 KB
testcase_36 AC 62 ms
64,128 KB
testcase_37 AC 60 ms
62,336 KB
testcase_38 AC 60 ms
63,744 KB
testcase_39 AC 63 ms
62,976 KB
testcase_40 AC 56 ms
61,824 KB
testcase_41 AC 60 ms
63,488 KB
testcase_42 AC 63 ms
64,896 KB
権限があれば一括ダウンロードができます

ソースコード

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.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 = -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