結果

問題 No.137 貯金箱の焦り
ユーザー maine_honzukimaine_honzuki
提出日時 2020-05-19 21:25:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 283 ms / 5,000 ms
コード長 637 bytes
コンパイル時間 1,884 ms
コンパイル使用メモリ 170,168 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-01 23:03:34
合計ジャッジ時間 5,012 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,816 KB
testcase_01 AC 4 ms
6,820 KB
testcase_02 AC 26 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 30 ms
6,820 KB
testcase_05 AC 12 ms
6,820 KB
testcase_06 AC 29 ms
6,820 KB
testcase_07 AC 20 ms
6,816 KB
testcase_08 AC 22 ms
6,820 KB
testcase_09 AC 31 ms
6,820 KB
testcase_10 AC 19 ms
6,820 KB
testcase_11 AC 10 ms
6,816 KB
testcase_12 AC 283 ms
6,816 KB
testcase_13 AC 39 ms
6,816 KB
testcase_14 AC 277 ms
6,820 KB
testcase_15 AC 242 ms
6,820 KB
testcase_16 AC 248 ms
6,816 KB
testcase_17 AC 146 ms
6,820 KB
testcase_18 AC 234 ms
6,820 KB
testcase_19 AC 275 ms
6,824 KB
testcase_20 AC 14 ms
6,820 KB
testcase_21 AC 183 ms
6,816 KB
testcase_22 AC 59 ms
6,820 KB
testcase_23 AC 52 ms
6,820 KB
testcase_24 AC 126 ms
6,820 KB
testcase_25 AC 218 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll mod = 1234567891ll;

int main() {
    ll N, M;
    cin >> N >> M;
    vector<int> A(N);
    for (int i = 0; i < N; i++) {
        cin >> A[i];
    }

    vector<ll> dp(61000);
    dp[0] = 1;

    while (M) {
        for (int i = 0; i < N; i++) {
            for (int x = 60000; x >= 0; x--) {
                (dp[x + A[i]] += dp[x]) %= mod;
            }
        }
        for (int i = 0; i < 30000; i++) {
            dp[i] = dp[i * 2 + M % 2ll];
        }
        fill(dp.begin() + 30000, dp.end(), 0ll);
        M >>= 1;
    }

    cout << dp[0] << endl;
}
0