結果

問題 No.2227 King Kraken's Attack
ユーザー 👑 KazunKazun
提出日時 2023-02-24 22:27:59
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 981 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-10-02 11:19:21
合計ジャッジ時間 13,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 66 ms
66,560 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 41 ms
51,584 KB
testcase_06 AC 46 ms
52,864 KB
testcase_07 AC 55 ms
62,592 KB
testcase_08 AC 44 ms
52,992 KB
testcase_09 AC 60 ms
64,256 KB
testcase_10 AC 49 ms
59,008 KB
testcase_11 AC 59 ms
64,000 KB
testcase_12 AC 59 ms
64,256 KB
testcase_13 AC 64 ms
66,304 KB
testcase_14 AC 74 ms
74,880 KB
testcase_15 AC 306 ms
75,264 KB
testcase_16 AC 74 ms
75,136 KB
testcase_17 AC 671 ms
75,392 KB
testcase_18 AC 78 ms
74,880 KB
testcase_19 AC 478 ms
75,136 KB
testcase_20 AC 474 ms
75,264 KB
testcase_21 AC 858 ms
76,032 KB
testcase_22 AC 42 ms
52,096 KB
testcase_23 AC 41 ms
52,096 KB
testcase_24 AC 424 ms
75,648 KB
testcase_25 AC 306 ms
75,392 KB
testcase_26 AC 74 ms
75,520 KB
testcase_27 AC 89 ms
75,520 KB
testcase_28 AC 1,013 ms
75,776 KB
testcase_29 AC 992 ms
76,032 KB
testcase_30 AC 998 ms
76,144 KB
testcase_31 AC 966 ms
75,520 KB
testcase_32 AC 886 ms
75,648 KB
testcase_33 AC 567 ms
76,032 KB
testcase_34 AC 347 ms
76,288 KB
testcase_35 AC 809 ms
76,416 KB
testcase_36 AC 436 ms
75,520 KB
testcase_37 AC 59 ms
64,128 KB
testcase_38 AC 61 ms
65,536 KB
testcase_39 AC 62 ms
66,816 KB
testcase_40 AC 59 ms
64,640 KB
testcase_41 AC 77 ms
75,392 KB
testcase_42 AC 58 ms
64,256 KB
testcase_43 AC 58 ms
64,256 KB
testcase_44 AC 72 ms
72,832 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

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

#==================================================
def solve():
    H,W,LA,LB,KA,KB=map(int,input().split())

    inf=float("inf")
    X=inf
    for A in range(H+1):
        def check(b):
            s=min(H,A*LA)
            t=min(W,b*LB)
            return s*t+A*KA+b*KB>=H*W

        B=General_Binary_Increase_Search_Integer(0,H+W,check,inf)
        X=min(X,A+B)
    return X
#==================================================
print(solve())
0