結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー moharan627moharan627
提出日時 2021-11-12 22:55:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 603 ms / 3,000 ms
コード長 1,654 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 113,144 KB
最終ジャッジ日時 2024-05-04 10:33:35
合計ジャッジ時間 11,005 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,888 KB
testcase_01 AC 40 ms
54,144 KB
testcase_02 AC 40 ms
53,632 KB
testcase_03 AC 35 ms
53,760 KB
testcase_04 AC 592 ms
98,140 KB
testcase_05 AC 200 ms
91,076 KB
testcase_06 AC 160 ms
108,288 KB
testcase_07 AC 37 ms
53,504 KB
testcase_08 AC 133 ms
84,156 KB
testcase_09 AC 168 ms
88,576 KB
testcase_10 AC 235 ms
85,552 KB
testcase_11 AC 201 ms
81,536 KB
testcase_12 AC 54 ms
66,688 KB
testcase_13 AC 388 ms
93,160 KB
testcase_14 AC 156 ms
87,888 KB
testcase_15 AC 596 ms
91,776 KB
testcase_16 AC 198 ms
80,908 KB
testcase_17 AC 329 ms
83,456 KB
testcase_18 AC 110 ms
83,252 KB
testcase_19 AC 297 ms
88,448 KB
testcase_20 AC 82 ms
79,540 KB
testcase_21 AC 484 ms
101,580 KB
testcase_22 AC 535 ms
89,472 KB
testcase_23 AC 603 ms
113,144 KB
testcase_24 AC 215 ms
91,520 KB
testcase_25 AC 185 ms
90,368 KB
testcase_26 AC 597 ms
101,828 KB
testcase_27 AC 166 ms
90,392 KB
testcase_28 AC 582 ms
92,032 KB
testcase_29 AC 197 ms
92,160 KB
testcase_30 AC 596 ms
100,852 KB
testcase_31 AC 566 ms
96,960 KB
testcase_32 AC 189 ms
91,904 KB
testcase_33 AC 49 ms
61,568 KB
testcase_34 AC 40 ms
53,632 KB
testcase_35 AC 48 ms
60,544 KB
testcase_36 AC 39 ms
54,016 KB
testcase_37 AC 39 ms
54,272 KB
testcase_38 AC 50 ms
61,824 KB
testcase_39 AC 54 ms
62,720 KB
testcase_40 AC 51 ms
62,336 KB
testcase_41 AC 52 ms
62,464 KB
testcase_42 AC 51 ms
61,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(10 ** 6)
INF = float('inf')
#10**20,2**63に変えるのもあり
MOD = 10**9 + 7
MOD2 = 998244353
from collections import defaultdict
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LC(): return list(input())
def IC(): return [int(c) for c in input()]
def MI(): return map(int, sys.stdin.readline().split())
N,A,B,X,Y = MI()
H =LI()
def is_ok(K):
    # 条件を満たすかどうか?問題ごとに定義
    a,b,x,y = A,B,X,Y
    HP = [0]*N
    for n in range(N):
        HP[n] = H[n]-K
    for n in range(N):
        if(HP[n]<=0):
            continue
        atk = HP[n]//x
        at = min(atk,a)
        HP[n] -=at*x
        a-=at
    if 0<a:
        HP.sort(reverse=True)
        for n in range(min(N,a)):
            HP[n] = 0
    SUM = 0
    for h in HP:
        if h<=0:
            continue
        else:
            SUM += h
    return SUM <= b*y
def meguru_bisect(ng, ok):
    """
    この条件は、問題に基づくやつじゃなくてもOK
    条件の付け方は、ngとokの広げ方をどのようにするかで決まってくる。
    (目的値)~正の無限 が条件を満たす場合
    ng…条件を満たさない値の範囲での最大値
    ok…条件を満たす値の範囲での最小値
    ng < ok
    is_ok == Trueの場合、探索範囲が左半分へ
    is_ok == Falseの場合、探索範囲が右半分へ
    """
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok
print(meguru_bisect(-1,10**9))
0