結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー first_vilfirst_vil
提出日時 2021-11-12 22:40:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 594 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 97,492 KB
最終ジャッジ日時 2024-05-04 10:07:55
合計ジャッジ時間 6,668 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 34 ms
52,352 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 133 ms
96,896 KB
testcase_07 AC 35 ms
52,608 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 118 ms
79,872 KB
testcase_12 WA -
testcase_13 AC 152 ms
87,580 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 104 ms
79,104 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 193 ms
96,640 KB
testcase_27 WA -
testcase_28 AC 196 ms
96,512 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 195 ms
96,512 KB
testcase_32 AC 197 ms
96,384 KB
testcase_33 WA -
testcase_34 AC 37 ms
52,352 KB
testcase_35 AC 40 ms
58,112 KB
testcase_36 AC 35 ms
52,480 KB
testcase_37 AC 34 ms
52,096 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from heapq import heapify,heappush,heappop
    n,A,b,x,y = map(int,input().split())
    H = list(map(int,input().split()))

    ng,ok = -1,1
    while ok-ng > 1:
        mid = (ok+ng)>>1
        a = A
        h = list(map(lambda x: (x-mid)*-1,H))
        heapify(h)
        while a:
            v = heappop(h)*-1
            if v <= 0:
                break
            heappush(h,(v-x)*-1)
            a -= 1
        s = 0
        while h:
            s += max(0, heappop(h)*-1)
        if s <= y*b:
            ok = mid
        else:
            ng = mid
    print(ok)
main()
0