結果

問題 No.2227 King Kraken's Attack
ユーザー HIcoderHIcoder
提出日時 2024-09-28 20:29:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 915 bytes
コンパイル時間 1,208 ms
コンパイル使用メモリ 117,228 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-28 20:30:30
合計ジャッジ時間 6,456 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 190 ms
6,816 KB
testcase_15 AC 187 ms
6,820 KB
testcase_16 AC 201 ms
6,816 KB
testcase_17 AC 197 ms
6,816 KB
testcase_18 AC 187 ms
6,816 KB
testcase_19 AC 214 ms
6,816 KB
testcase_20 AC 197 ms
6,816 KB
testcase_21 AC 194 ms
6,816 KB
testcase_22 AC 93 ms
6,816 KB
testcase_23 AC 9 ms
6,816 KB
testcase_24 AC 107 ms
6,816 KB
testcase_25 AC 200 ms
6,820 KB
testcase_26 AC 202 ms
6,816 KB
testcase_27 AC 203 ms
6,816 KB
testcase_28 AC 199 ms
6,816 KB
testcase_29 AC 201 ms
6,816 KB
testcase_30 AC 196 ms
6,816 KB
testcase_31 AC 178 ms
6,816 KB
testcase_32 AC 92 ms
6,816 KB
testcase_33 AC 91 ms
6,820 KB
testcase_34 AC 64 ms
6,816 KB
testcase_35 AC 98 ms
6,816 KB
testcase_36 AC 92 ms
6,816 KB
testcase_37 AC 68 ms
6,816 KB
testcase_38 AC 45 ms
6,820 KB
testcase_39 AC 39 ms
6,816 KB
testcase_40 AC 42 ms
6,816 KB
testcase_41 AC 154 ms
6,816 KB
testcase_42 AC 39 ms
6,820 KB
testcase_43 AC 74 ms
6,820 KB
testcase_44 AC 138 ms
6,816 KB
testcase_45 AC 2 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=H+W;//ubは必ず達成できる
        ll lb=-1;
        //今、a回横パンチを行ったとする



        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;
            }
        }

        ans=min(ans,a+ub);

    }

    cout<<ans<<endl;
}
0