結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,888 KB
testcase_01 AC 47 ms
54,656 KB
testcase_02 AC 46 ms
54,656 KB
testcase_03 AC 59 ms
61,184 KB
testcase_04 AC 1,148 ms
102,420 KB
testcase_05 AC 1,431 ms
102,364 KB
testcase_06 AC 1,127 ms
101,084 KB
testcase_07 AC 54 ms
61,312 KB
testcase_08 AC 227 ms
89,700 KB
testcase_09 AC 313 ms
97,688 KB
testcase_10 AC 865 ms
86,656 KB
testcase_11 AC 613 ms
83,968 KB
testcase_12 AC 94 ms
76,160 KB
testcase_13 AC 807 ms
92,444 KB
testcase_14 AC 940 ms
94,740 KB
testcase_15 AC 795 ms
101,920 KB
testcase_16 AC 1,043 ms
84,224 KB
testcase_17 AC 515 ms
88,976 KB
testcase_18 AC 1,060 ms
88,676 KB
testcase_19 AC 278 ms
89,088 KB
testcase_20 AC 198 ms
80,128 KB
testcase_21 AC 481 ms
97,316 KB
testcase_22 AC 798 ms
98,664 KB
testcase_23 AC 1,296 ms
102,224 KB
testcase_24 AC 1,499 ms
102,096 KB
testcase_25 AC 1,413 ms
102,224 KB
testcase_26 AC 1,243 ms
101,336 KB
testcase_27 AC 1,433 ms
102,028 KB
testcase_28 AC 1,266 ms
101,404 KB
testcase_29 AC 1,440 ms
101,640 KB
testcase_30 AC 1,364 ms
101,864 KB
testcase_31 AC 1,289 ms
101,216 KB
testcase_32 AC 1,403 ms
101,024 KB
testcase_33 AC 82 ms
73,840 KB
testcase_34 AC 80 ms
75,776 KB
testcase_35 AC 100 ms
76,160 KB
testcase_36 AC 104 ms
76,160 KB
testcase_37 AC 93 ms
75,904 KB
testcase_38 AC 101 ms
76,800 KB
testcase_39 AC 85 ms
75,776 KB
testcase_40 AC 79 ms
70,528 KB
testcase_41 AC 93 ms
76,160 KB
testcase_42 AC 84 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