結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー moharan627moharan627
提出日時 2021-11-12 22:52:43
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,647 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 113,156 KB
最終ジャッジ日時 2024-05-04 10:28:46
合計ジャッジ時間 9,261 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,376 KB
testcase_01 AC 46 ms
53,760 KB
testcase_02 AC 43 ms
54,272 KB
testcase_03 RE -
testcase_04 AC 558 ms
98,108 KB
testcase_05 AC 157 ms
91,136 KB
testcase_06 AC 115 ms
108,416 KB
testcase_07 RE -
testcase_08 AC 109 ms
83,712 KB
testcase_09 AC 150 ms
88,192 KB
testcase_10 AC 237 ms
85,888 KB
testcase_11 RE -
testcase_12 AC 54 ms
66,560 KB
testcase_13 AC 355 ms
93,288 KB
testcase_14 AC 131 ms
87,296 KB
testcase_15 AC 597 ms
92,160 KB
testcase_16 RE -
testcase_17 AC 300 ms
83,584 KB
testcase_18 AC 100 ms
83,116 KB
testcase_19 AC 293 ms
87,808 KB
testcase_20 AC 77 ms
79,232 KB
testcase_21 AC 465 ms
101,692 KB
testcase_22 AC 516 ms
89,856 KB
testcase_23 AC 571 ms
113,156 KB
testcase_24 AC 184 ms
91,808 KB
testcase_25 AC 158 ms
90,496 KB
testcase_26 RE -
testcase_27 AC 154 ms
90,240 KB
testcase_28 AC 549 ms
92,288 KB
testcase_29 AC 169 ms
91,648 KB
testcase_30 AC 557 ms
101,320 KB
testcase_31 RE -
testcase_32 AC 174 ms
92,032 KB
testcase_33 AC 44 ms
61,952 KB
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 AC 47 ms
62,336 KB
testcase_39 AC 48 ms
62,848 KB
testcase_40 AC 46 ms
62,848 KB
testcase_41 AC 47 ms
62,464 KB
testcase_42 AC 45 ms
61,952 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(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