結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー H3PO4H3PO4
提出日時 2021-11-12 21:49:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 707 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 153,664 KB
最終ジャッジ日時 2024-05-04 08:15:51
合計ジャッジ時間 10,228 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 33 ms
52,352 KB
testcase_02 AC 32 ms
52,480 KB
testcase_03 WA -
testcase_04 AC 558 ms
149,500 KB
testcase_05 AC 186 ms
101,936 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 133 ms
97,176 KB
testcase_09 AC 178 ms
97,044 KB
testcase_10 AC 205 ms
90,240 KB
testcase_11 WA -
testcase_12 AC 49 ms
67,328 KB
testcase_13 WA -
testcase_14 AC 153 ms
97,772 KB
testcase_15 AC 560 ms
153,664 KB
testcase_16 AC 175 ms
92,416 KB
testcase_17 AC 296 ms
98,176 KB
testcase_18 AC 124 ms
93,848 KB
testcase_19 AC 196 ms
112,640 KB
testcase_20 WA -
testcase_21 AC 407 ms
125,652 KB
testcase_22 AC 495 ms
136,016 KB
testcase_23 AC 559 ms
135,584 KB
testcase_24 AC 214 ms
119,308 KB
testcase_25 AC 192 ms
96,796 KB
testcase_26 WA -
testcase_27 AC 197 ms
96,000 KB
testcase_28 WA -
testcase_29 AC 205 ms
101,948 KB
testcase_30 AC 584 ms
147,996 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 41 ms
59,776 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 42 ms
60,032 KB
testcase_39 AC 44 ms
61,568 KB
testcase_40 AC 39 ms
60,544 KB
testcase_41 AC 42 ms
60,160 KB
testcase_42 AC 43 ms
59,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, A, B, X, Y = map(int, input().split())
H = tuple(map(int, input().split()))


def solve(N, A, B, X, Y, H, K):
    Hl = list(H)
    for i in range(N):
        Hl[i] = max(Hl[i] - K, 0)

    for i in range(N):
        div = Hl[i] // X
        if div <= A:
            Hl[i] -= div * X
            A -= div
        else:
            Hl[i] -= A * X
            A = 0

    if A >= N:
        return True
    elif A:
        Hl.sort(reverse=True)
        # 前からA番目までは潰せる
        return sum(Hl[A:]) <= B * Y
    else:
        return sum(Hl) <= B * Y


l, r = 0, 10 ** 9
while r - l > 1:
    m = (r + l) // 2
    if solve(N, A, B, X, Y, H, m):
        r = m
    else:
        l = m
print(r)
0