結果

問題 No.2227 King Kraken's Attack
ユーザー chro_96chro_96
提出日時 2023-02-24 22:18:41
言語 C
(gcc 13.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,144 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 30,208 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-02 11:15:58
合計ジャッジ時間 2,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 41 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main () {
  long long h = 0LL;
  long long w = 0LL;
  long long la = 0LL;
  long long lb = 0LL;
  long long ka = 0LL;
  long long kb = 0LL;
  
  int res = 0;
  
  long long ans = 0LL;
  long long max = 0LL;
  
  res = scanf("%lld", &h);
  res = scanf("%lld", &w);
  res = scanf("%lld", &la);
  res = scanf("%lld", &lb);
  res = scanf("%lld", &ka);
  res = scanf("%lld", &kb);
  
  ans = h+w;
  max = h*w;
  if (kb > 0LL && max > 1LL+(h*w-1LL)/kb) {
    max = 1LL+(h*w-1LL)/kb;
  }
  
  for (long long a = 0LL; a <= 1LL+(h-1LL)/la; a += 1LL) {
    long long tmp = 0LL;
    long long ar = la*a;
    long long b[2] = { -1LL, max };
    long long br = 0LL;
    if (ar > h) {
      ar = h;
    }
    while (b[1]-b[0] > 1LL) {
      long long nxt = (b[0]+b[1])/2LL;
      long long br = nxt*lb;
      if (br > w) {
        br = w;
      }
      if (h*w-ar*br > ka*a+kb*nxt) {
        b[0] = nxt;
      } else {
        b[1] = nxt;
      }
    }
    br = b[1]*lb;
    if (br > w) {
      br = w;
    }
    if (h*w-ar*br <= ka*a+kb*b[1] && a+b[1] < ans) {
      ans = a+b[1];
    }
  }
  
  printf("%lld\n", ans);
  return 0;
}
0