結果
問題 | No.137 貯金箱の焦り |
ユーザー | pekempey |
提出日時 | 2016-02-18 09:21:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 265 ms / 5,000 ms |
コード長 | 907 bytes |
コンパイル時間 | 1,456 ms |
コンパイル使用メモリ | 159,856 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 23:19:10 |
合計ジャッジ時間 | 4,742 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
5,248 KB |
testcase_01 | AC | 6 ms
5,248 KB |
testcase_02 | AC | 33 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 32 ms
5,248 KB |
testcase_05 | AC | 13 ms
5,248 KB |
testcase_06 | AC | 30 ms
5,248 KB |
testcase_07 | AC | 22 ms
5,248 KB |
testcase_08 | AC | 23 ms
5,248 KB |
testcase_09 | AC | 31 ms
5,248 KB |
testcase_10 | AC | 20 ms
5,248 KB |
testcase_11 | AC | 17 ms
5,248 KB |
testcase_12 | AC | 265 ms
5,248 KB |
testcase_13 | AC | 38 ms
5,248 KB |
testcase_14 | AC | 260 ms
5,248 KB |
testcase_15 | AC | 229 ms
5,248 KB |
testcase_16 | AC | 235 ms
5,248 KB |
testcase_17 | AC | 141 ms
5,248 KB |
testcase_18 | AC | 222 ms
5,248 KB |
testcase_19 | AC | 260 ms
5,248 KB |
testcase_20 | AC | 21 ms
5,248 KB |
testcase_21 | AC | 175 ms
5,248 KB |
testcase_22 | AC | 64 ms
5,248 KB |
testcase_23 | AC | 56 ms
5,248 KB |
testcase_24 | AC | 123 ms
5,248 KB |
testcase_25 | AC | 205 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, a) for (int i = 0; i < (a); i++) #define rep2(i, a, b) for (int i = (a); i < (b); i++) #define repr(i, a) for (int i = (a) - 1; i >= 0; i--) #define repr2(i, a, b) for (int i = (b) - 1; i >= (a); i--) template<class T1, class T2> bool chmin(T1 &a, T2 b) { return b < a && (a = b, true); } template<class T1, class T2> bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); } typedef long long ll; int main() { ll n, m; cin >> n >> m; vector<int> a(n); rep(i, n) cin >> a[i]; const ll mod = 1234567891; static ll dp0[50505], dp1[50505]; dp0[0] = 1; while (m > 0) { memset(dp1, 0, sizeof(dp1)); rep(i, n) repr(j, 50505) if (j + a[i] < 50505) { (dp0[j + a[i]] += dp0[j]) %= mod; } rep(j, 50505) if (j % 2 == (m & 1)) { (dp1[j / 2] += dp0[j]) %= mod; } m /= 2; swap(dp0, dp1); } cout << dp0[0] << endl; return 0; }