結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-11-12 22:22:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,681 ms / 3,000 ms
コード長 649 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 139,352 KB
最終ジャッジ日時 2024-05-04 09:25:23
合計ジャッジ時間 31,505 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,608 KB
testcase_01 AC 35 ms
52,608 KB
testcase_02 AC 36 ms
52,992 KB
testcase_03 AC 47 ms
62,464 KB
testcase_04 AC 1,363 ms
138,672 KB
testcase_05 AC 1,676 ms
138,724 KB
testcase_06 AC 943 ms
136,844 KB
testcase_07 AC 48 ms
62,800 KB
testcase_08 AC 272 ms
109,824 KB
testcase_09 AC 389 ms
130,008 KB
testcase_10 AC 892 ms
99,608 KB
testcase_11 AC 571 ms
93,620 KB
testcase_12 AC 93 ms
76,940 KB
testcase_13 AC 851 ms
114,184 KB
testcase_14 AC 1,036 ms
123,364 KB
testcase_15 AC 891 ms
137,584 KB
testcase_16 AC 1,005 ms
94,996 KB
testcase_17 AC 533 ms
107,536 KB
testcase_18 AC 1,108 ms
106,152 KB
testcase_19 AC 330 ms
107,312 KB
testcase_20 AC 206 ms
88,612 KB
testcase_21 AC 662 ms
129,680 KB
testcase_22 AC 914 ms
132,048 KB
testcase_23 AC 1,442 ms
139,352 KB
testcase_24 AC 1,515 ms
138,652 KB
testcase_25 AC 1,681 ms
138,948 KB
testcase_26 AC 1,373 ms
136,040 KB
testcase_27 AC 1,656 ms
138,108 KB
testcase_28 AC 1,407 ms
136,672 KB
testcase_29 AC 1,676 ms
138,656 KB
testcase_30 AC 1,502 ms
138,952 KB
testcase_31 AC 1,460 ms
136,664 KB
testcase_32 AC 1,541 ms
137,260 KB
testcase_33 AC 67 ms
71,980 KB
testcase_34 AC 59 ms
75,648 KB
testcase_35 AC 82 ms
76,624 KB
testcase_36 AC 78 ms
75,776 KB
testcase_37 AC 63 ms
75,740 KB
testcase_38 AC 77 ms
76,096 KB
testcase_39 AC 79 ms
76,272 KB
testcase_40 AC 71 ms
76,288 KB
testcase_41 AC 82 ms
76,472 KB
testcase_42 AC 74 ms
76,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b,x,y = map(int,input().split())
H = list(map(lambda x:-int(x),input().split()))


import heapq

# print(q)
def isok(mid):
    h = list(map(lambda x:min(0,x+mid),H))
    heapq.heapify(h)
    b_sum = b*y
#     print(h,mid)
    for i in range(a):
        aa = heapq.heappop(h)
        aa = min(aa+x,0)
        heapq.heappush(h,aa)
    h = list(map(lambda x:-int(x),h))
    # print(h)
    for i in range(n):
        d = min(b_sum,h[i])
        h[i] -= d
        b_sum -= d
    if sum(h) == 0:return True
    else:return False
l = -1
r = -min(H)
while r-l > 1:
    mid = (r+l) //2
    if isok(mid):
        r = mid
    else:
        l = mid
print(r)
0