結果

問題 No.288 貯金箱の仕事
ユーザー PachicobuePachicobue
提出日時 2018-12-08 17:00:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 1,007 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 204,400 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-09-14 04:32:49
合計ジャッジ時間 7,655 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 AC 2 ms
5,376 KB
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 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 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 3 ms
5,376 KB
testcase_23 AC 296 ms
15,104 KB
testcase_24 AC 79 ms
9,600 KB
testcase_25 AC 3 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 86 ms
15,104 KB
testcase_31 AC 86 ms
15,232 KB
testcase_32 AC 158 ms
15,104 KB
testcase_33 AC 157 ms
15,232 KB
testcase_34 AC 227 ms
15,104 KB
testcase_35 AC 225 ms
15,104 KB
testcase_36 AC 294 ms
15,232 KB
testcase_37 AC 89 ms
7,808 KB
testcase_38 AC 205 ms
14,976 KB
testcase_39 AC 102 ms
6,912 KB
testcase_40 AC 110 ms
15,232 KB
testcase_41 AC 284 ms
15,232 KB
testcase_42 AC 248 ms
15,104 KB
testcase_43 AC 37 ms
6,400 KB
testcase_44 AC 55 ms
8,064 KB
testcase_45 AC 162 ms
11,648 KB
testcase_46 AC 250 ms
15,232 KB
testcase_47 AC 126 ms
7,936 KB
testcase_48 AC 176 ms
14,592 KB
testcase_49 AC 71 ms
10,368 KB
testcase_50 AC 110 ms
8,064 KB
testcase_51 AC 77 ms
11,392 KB
testcase_52 AC 142 ms
14,464 KB
testcase_53 AC 183 ms
14,336 KB
testcase_54 AC 104 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) / 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