結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー 👑 KazunKazun
提出日時 2021-11-12 22:41:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,035 ms / 3,000 ms
コード長 1,001 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 121,252 KB
最終ジャッジ日時 2024-05-04 10:13:42
合計ジャッジ時間 24,895 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 42 ms
58,368 KB
testcase_04 AC 1,305 ms
102,572 KB
testcase_05 AC 1,747 ms
108,588 KB
testcase_06 AC 130 ms
96,768 KB
testcase_07 AC 43 ms
58,240 KB
testcase_08 AC 263 ms
94,364 KB
testcase_09 AC 314 ms
95,556 KB
testcase_10 AC 863 ms
84,864 KB
testcase_11 AC 128 ms
79,872 KB
testcase_12 AC 94 ms
76,544 KB
testcase_13 AC 146 ms
87,168 KB
testcase_14 AC 1,124 ms
99,124 KB
testcase_15 AC 893 ms
104,240 KB
testcase_16 AC 1,045 ms
84,736 KB
testcase_17 AC 547 ms
92,560 KB
testcase_18 AC 1,108 ms
87,008 KB
testcase_19 AC 205 ms
84,096 KB
testcase_20 AC 97 ms
78,592 KB
testcase_21 AC 459 ms
93,440 KB
testcase_22 AC 885 ms
100,496 KB
testcase_23 AC 1,490 ms
121,252 KB
testcase_24 AC 2,035 ms
107,316 KB
testcase_25 AC 1,748 ms
100,508 KB
testcase_26 AC 170 ms
96,640 KB
testcase_27 AC 1,798 ms
104,996 KB
testcase_28 AC 170 ms
96,768 KB
testcase_29 AC 1,707 ms
105,248 KB
testcase_30 AC 1,527 ms
118,696 KB
testcase_31 AC 169 ms
96,768 KB
testcase_32 AC 169 ms
96,384 KB
testcase_33 AC 72 ms
69,376 KB
testcase_34 AC 41 ms
57,600 KB
testcase_35 AC 38 ms
52,736 KB
testcase_36 AC 48 ms
60,288 KB
testcase_37 AC 42 ms
57,856 KB
testcase_38 AC 85 ms
76,160 KB
testcase_39 AC 77 ms
75,648 KB
testcase_40 AC 69 ms
68,608 KB
testcase_41 AC 84 ms
75,648 KB
testcase_42 AC 72 ms
69,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def General_Binary_Increase_Search_Integer(L,R,cond,default=None):
    """条件式が単調増加であるとき, 整数上で二部探索を行う.
    L: 解の下限
    R: 解の上限
    cond: 条件(1変数関数, 広義単調増加を満たす)
    default: Lで条件を満たさないときの返り値
    """
    if not(cond(R)): return default

    if cond(L): return L

    R+=1
    while R-L>1:
        C=L+(R-L)//2
        if cond(C): R=C
        else: L=C
    return R
#==================================================
from heapq import heapify,heappop,heappush

def check(K):
    HH=[-(hp-K) for hp in H if hp>K]
    heapify(HH)

    for _ in range(A):
        if not HH:
            continue

        hp=-heappop(HH)
        if hp>=X:
            heappush(HH,-(hp-X))
    return -sum(HH)<=Y*B
#==================================================
N,A,B,X,Y=map(int,input().split())
H=list(map(int,input().split()))

print(General_Binary_Increase_Search_Integer(0,max(H),check,-1))
0