結果
問題 | No.137 貯金箱の焦り |
ユーザー | Min_25 |
提出日時 | 2015-12-08 22:12:13 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 196 ms / 5,000 ms |
コード長 | 956 bytes |
コンパイル時間 | 692 ms |
コンパイル使用メモリ | 62,452 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 23:15:53 |
合計ジャッジ時間 | 2,174 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
コンパイルメッセージ
main.cpp: In function ‘void solve()’: main.cpp:27:20: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 27 | rep(i, N) scanf("%d", &A[i]), s += A[i]; | ~~~~~^~~~~~~~~~~~~
ソースコード
#include <cstdio> #include <cassert> #include <cstring> #include <ctime> #include <iostream> #include <algorithm> #include <vector> #include <queue> #include <utility> #define rep(i, n) for (int i = 0; i < int(n); ++i) #define rep3(i, m, n) for (int i = int(m); i < int(n); ++i) using namespace std; using int64 = long long; const int64 MOD = 1234567891; int A[50]; int64 poly[50010]; void solve() { int64 N, M; while (~scanf("%lld %lld", &N, &M)) { int64 s = 0; rep(i, N) scanf("%d", &A[i]), s += A[i]; poly[0] = 1; int64 t = 1; while (M) { fill(poly + t, poly + s + t, 0); rep(i, N) { for(int j = t - 1; j >= 0; --j) { if (poly[j]) (poly[j + A[i]] += poly[j]) %= MOD; } t += A[i]; } int p = M & 1; M >>= 1; t = (t + 1 - p) >> 1; rep(i, t) poly[i] = poly[2 * i + p]; } printf("%lld\n", poly[0]); } } int main() { solve(); return 0; }