結果

問題 No.2227 King Kraken's Attack
ユーザー HIcoderHIcoder
提出日時 2024-09-28 20:26:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,210 bytes
コンパイル時間 885 ms
コンパイル使用メモリ 116,844 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-09-28 20:27:00
合計ジャッジ時間 9,086 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 1 ms
6,824 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 332 ms
6,820 KB
testcase_15 AC 327 ms
6,820 KB
testcase_16 AC 362 ms
6,816 KB
testcase_17 AC 323 ms
6,816 KB
testcase_18 WA -
testcase_19 AC 354 ms
6,820 KB
testcase_20 AC 326 ms
6,820 KB
testcase_21 AC 324 ms
6,816 KB
testcase_22 AC 162 ms
6,816 KB
testcase_23 AC 19 ms
6,820 KB
testcase_24 AC 187 ms
6,816 KB
testcase_25 WA -
testcase_26 AC 334 ms
6,816 KB
testcase_27 WA -
testcase_28 AC 346 ms
6,820 KB
testcase_29 AC 332 ms
6,816 KB
testcase_30 AC 326 ms
6,820 KB
testcase_31 AC 307 ms
6,820 KB
testcase_32 AC 160 ms
6,820 KB
testcase_33 AC 146 ms
6,816 KB
testcase_34 AC 98 ms
6,816 KB
testcase_35 AC 163 ms
6,820 KB
testcase_36 AC 161 ms
6,820 KB
testcase_37 AC 121 ms
6,820 KB
testcase_38 WA -
testcase_39 AC 70 ms
6,820 KB
testcase_40 AC 79 ms
6,820 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;

int main(){
    ll H,W,LA,LB,KA,KB;
    cin>>H>>W>>LA>>LB>>KA>>KB;

    ll ans=inf;
    
    for(ll a=0;a<=(H+W);a++){
        ll ub=inf;//ubは必ず達成できる
        ll lb=-1;
        //今、a回横パンチを行ったとする

        // ll cH=H;
        // ll h=min(a*LA,H);
        // if(h==H){

        // }else{
        //     //h<H
        //     //W/(LA*KA)の行ぶんが消える
        //     cH=cH-W/(LA*KA);
        // }


        while(ub-lb>1){
            ll mid=(ub+lb)/2;

            ll c=min(H,a*LA)*min(W,mid*LB)+a*KA+mid*KB;
            if(c>=H*W){
                ub=mid;
            }else{
                lb=mid;
            }
        }

        if(lb==inf-1){
            continue;//横パンチがa回では無理
        }

        ans=min(ans,a+ub);

    }

    cout<<ans<<endl;
}
0