結果
問題 | No.2227 King Kraken's Attack |
ユーザー |
![]() |
提出日時 | 2023-12-27 21:35:03 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 255 ms / 2,000 ms |
コード長 | 496 bytes |
コンパイル時間 | 548 ms |
コンパイル使用メモリ | 67,024 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-27 15:35:02 |
合計ジャッジ時間 | 13,723 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 42 |
ソースコード
#include <iostream>#include <algorithm>using namespace std;using ll = long long;int main(){ll h, w, la, lb, ka, kb; cin >> h >> w >> la >> lb >> ka >> kb;int ans = 1 << 30;for(int x = 0; x <= 2e6; x++){int ac = 2e6, wa = -1;while(ac-wa > 1){int wj = (ac+wa)/2;ll z = ka*x+kb*wj+min(la*x, h)*min(lb*wj, w);(h*w <= z ? ac : wa) = wj;}ans = min(ans, x+ac);}cout << ans << endl;return 0;}