結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー ShirotsumeShirotsume
提出日時 2021-10-28 23:36:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,529 ms / 3,000 ms
コード長 755 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 102,620 KB
最終ジャッジ日時 2024-05-04 04:16:46
合計ジャッジ時間 29,470 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
54,272 KB
testcase_01 AC 55 ms
53,888 KB
testcase_02 AC 54 ms
54,528 KB
testcase_03 AC 66 ms
61,440 KB
testcase_04 AC 1,172 ms
102,620 KB
testcase_05 AC 1,443 ms
102,376 KB
testcase_06 AC 1,133 ms
101,504 KB
testcase_07 AC 57 ms
61,440 KB
testcase_08 AC 236 ms
89,704 KB
testcase_09 AC 316 ms
98,216 KB
testcase_10 AC 865 ms
86,912 KB
testcase_11 AC 595 ms
83,840 KB
testcase_12 AC 101 ms
76,160 KB
testcase_13 AC 814 ms
91,972 KB
testcase_14 AC 950 ms
94,996 KB
testcase_15 AC 788 ms
101,904 KB
testcase_16 AC 1,023 ms
83,584 KB
testcase_17 AC 497 ms
88,852 KB
testcase_18 AC 1,051 ms
88,808 KB
testcase_19 AC 279 ms
88,704 KB
testcase_20 AC 193 ms
80,000 KB
testcase_21 AC 489 ms
97,260 KB
testcase_22 AC 785 ms
98,400 KB
testcase_23 AC 1,295 ms
102,540 KB
testcase_24 AC 1,401 ms
102,228 KB
testcase_25 AC 1,529 ms
102,236 KB
testcase_26 AC 1,269 ms
101,464 KB
testcase_27 AC 1,427 ms
101,764 KB
testcase_28 AC 1,276 ms
100,888 KB
testcase_29 AC 1,440 ms
101,512 KB
testcase_30 AC 1,353 ms
101,648 KB
testcase_31 AC 1,305 ms
101,124 KB
testcase_32 AC 1,409 ms
101,348 KB
testcase_33 AC 85 ms
73,728 KB
testcase_34 AC 79 ms
75,776 KB
testcase_35 AC 98 ms
76,672 KB
testcase_36 AC 105 ms
76,160 KB
testcase_37 AC 92 ms
76,032 KB
testcase_38 AC 100 ms
76,672 KB
testcase_39 AC 87 ms
75,520 KB
testcase_40 AC 79 ms
70,400 KB
testcase_41 AC 92 ms
76,160 KB
testcase_42 AC 85 ms
73,216 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):
        import heapq
        h2 = [0] * n
        for i in range(n):
            h2[i] = min(0, k - h[i])
        heapq.heapify(h2)       
        
        for i in range(a):
            now = heapq.heappop(h2)
            now = min(0, now + x)
            heapq.heappush(h2, now)
        if -sum(h2) <= 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