結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー titiatitia
提出日時 2021-11-12 22:05:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 450 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 42,172 KB
最終ジャッジ日時 2024-11-25 18:41:40
合計ジャッジ時間 89,428 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,444 KB
testcase_01 AC 28 ms
17,568 KB
testcase_02 AC 26 ms
17,572 KB
testcase_03 AC 516 ms
17,448 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 578 ms
17,444 KB
testcase_08 AC 972 ms
32,736 KB
testcase_09 AC 1,542 ms
26,828 KB
testcase_10 AC 2,996 ms
36,300 KB
testcase_11 AC 2,208 ms
21,004 KB
testcase_12 AC 150 ms
33,220 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,860 ms
23,024 KB
testcase_18 TLE -
testcase_19 AC 1,011 ms
22,824 KB
testcase_20 AC 488 ms
34,824 KB
testcase_21 AC 2,037 ms
26,284 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 29 ms
10,624 KB
testcase_34 AC 40 ms
10,496 KB
testcase_35 AC 39 ms
10,624 KB
testcase_36 AC 48 ms
10,624 KB
testcase_37 AC 44 ms
10,496 KB
testcase_38 AC 36 ms
10,624 KB
testcase_39 AC 45 ms
10,752 KB
testcase_40 AC 33 ms
10,624 KB
testcase_41 AC 38 ms
10,624 KB
testcase_42 AC 32 ms
32,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import heapq

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

OK=max(H)
NG=-1

while OK>NG+1:
    mid=(OK+NG)//2
    Q=[]
    for h in H:
        h-=mid
        Q.append(min(0,-h))

    heapq.heapify(Q)

    for i in range(A):
        x=-heapq.heappop(Q)
        x=max(0,x-X)
        heapq.heappush(Q,-x)
    

    S=-sum(Q)
    if S<=Y*B:
        OK=mid
    else:
        NG=mid

print(OK)
0