結果

問題 No.288 貯金箱の仕事
ユーザー PachicobuePachicobue
提出日時 2018-12-08 16:57:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,011 bytes
コンパイル時間 2,299 ms
コンパイル使用メモリ 205,408 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-09-14 04:32:27
合計ジャッジ時間 8,125 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 313 ms
15,104 KB
testcase_24 AC 84 ms
9,600 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 4 ms
5,376 KB
testcase_30 AC 91 ms
15,232 KB
testcase_31 AC 90 ms
15,104 KB
testcase_32 AC 165 ms
15,104 KB
testcase_33 AC 166 ms
15,104 KB
testcase_34 AC 239 ms
15,104 KB
testcase_35 AC 238 ms
15,104 KB
testcase_36 AC 314 ms
15,104 KB
testcase_37 AC 93 ms
7,808 KB
testcase_38 AC 217 ms
14,976 KB
testcase_39 AC 108 ms
6,944 KB
testcase_40 AC 116 ms
15,104 KB
testcase_41 AC 300 ms
15,104 KB
testcase_42 AC 264 ms
15,104 KB
testcase_43 AC 39 ms
6,272 KB
testcase_44 AC 57 ms
8,064 KB
testcase_45 AC 172 ms
11,520 KB
testcase_46 AC 266 ms
15,104 KB
testcase_47 AC 131 ms
8,064 KB
testcase_48 AC 186 ms
14,592 KB
testcase_49 AC 75 ms
10,496 KB
testcase_50 AC 115 ms
7,936 KB
testcase_51 AC 81 ms
11,392 KB
testcase_52 AC 154 ms
14,336 KB
testcase_53 AC 191 ms
14,336 KB
testcase_54 AC 111 ms
12,288 KB
testcase_55 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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]); }
    M = -M;
    ll ans = (std::max(0LL, M - max * max + max + 1) / max);
    M -= ans * max;
    std::vector<int> memo(max * max, max * max);
    auto dp = [&](auto&& self, const ll M) -> int {
        if (M == 0) { return 0; }
        if (M < 0) { return max * max; }
        if (memo[M] != max * max) { return memo[M]; }
        int ans = max * 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 * max) { return std::cout << -1 << std::endl, 0; }
    std::cout << ans + add << std::endl;
    return 0;
}
0