結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー ShirotsumeShirotsume
提出日時 2021-10-29 19:07:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,377 ms / 3,000 ms
コード長 1,001 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,728 KB
最終ジャッジ日時 2024-05-04 04:19:50
合計ジャッジ時間 47,481 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 305 ms
10,752 KB
testcase_04 AC 2,041 ms
21,704 KB
testcase_05 AC 2,360 ms
21,592 KB
testcase_06 AC 2,153 ms
21,476 KB
testcase_07 AC 317 ms
10,752 KB
testcase_08 AC 584 ms
16,940 KB
testcase_09 AC 889 ms
20,056 KB
testcase_10 AC 1,253 ms
14,844 KB
testcase_11 AC 959 ms
14,064 KB
testcase_12 AC 97 ms
11,520 KB
testcase_13 AC 1,372 ms
17,604 KB
testcase_14 AC 1,549 ms
18,780 KB
testcase_15 AC 1,568 ms
21,692 KB
testcase_16 AC 1,382 ms
13,804 KB
testcase_17 AC 891 ms
16,244 KB
testcase_18 AC 1,534 ms
15,724 KB
testcase_19 AC 590 ms
15,800 KB
testcase_20 AC 276 ms
13,184 KB
testcase_21 AC 1,072 ms
19,516 KB
testcase_22 AC 1,492 ms
20,520 KB
testcase_23 AC 2,369 ms
21,560 KB
testcase_24 AC 2,325 ms
21,724 KB
testcase_25 AC 2,315 ms
21,556 KB
testcase_26 AC 2,205 ms
21,728 KB
testcase_27 AC 2,350 ms
21,648 KB
testcase_28 AC 2,249 ms
21,688 KB
testcase_29 AC 2,377 ms
21,540 KB
testcase_30 AC 2,329 ms
21,552 KB
testcase_31 AC 2,206 ms
21,536 KB
testcase_32 AC 2,247 ms
21,580 KB
testcase_33 AC 27 ms
10,624 KB
testcase_34 AC 32 ms
10,624 KB
testcase_35 AC 31 ms
10,624 KB
testcase_36 AC 36 ms
10,624 KB
testcase_37 AC 34 ms
10,624 KB
testcase_38 AC 31 ms
10,880 KB
testcase_39 AC 35 ms
10,880 KB
testcase_40 AC 29 ms
10,624 KB
testcase_41 AC 32 ms
10,752 KB
testcase_42 AC 28 ms
10,752 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 = -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