結果

問題 No.288 貯金箱の仕事
ユーザー PachicobuePachicobue
提出日時 2018-12-08 16:33:53
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 960 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 198,644 KB
最終ジャッジ日時 2025-01-06 18:41:43
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10 WA * 21 RE * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define show(x) std::cerr << #x << " = " << x << std::endl
using ll = long long;
int main()
{
    int N;
    ll M;
    std::cin >> N >> M;
    std::vector<int> A(N);
    std::vector<ll> K(N);
    for (int i = 0; i < N; i++) { std::cin >> A[i]; }
    int max = 0;
    for (int i = 0; i < N; i++) { std::cin >> K[i], M -= K[i] * A[i], max = std::max(max, A[i]); }
    ll ans = std::max(0LL, M - max * max) / max;
    M = ans * max - M;
    std::vector<int> memo(max * max, max);
    auto dp = [&](auto&& self, const ll M) -> int {
        if (M == 0) { return 0; }
        if (M < 0) { return max; }
        if (memo[M] != max) { return memo[M]; }
        int ans = max;
        for (const ll a : A) { ans = std::min(ans, self(self, M - a)); }
        return memo[M] = ans + 1;
    };
    const int add = dp(dp, M);
    if (add >= max) { return std::cout << -1 << std::endl, 0; }
    std::cout << ans + add << std::endl;
    return 0;
}
0