結果
問題 | No.137 貯金箱の焦り |
ユーザー | sugim48 |
提出日時 | 2015-01-26 00:43:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,239 bytes |
コンパイル時間 | 699 ms |
コンパイル使用メモリ | 88,632 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-23 03:08:13 |
合計ジャッジ時間 | 9,229 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 14 ms
5,376 KB |
testcase_02 | AC | 1,945 ms
7,808 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#define _USE_MATH_DEFINES #include <algorithm> #include <cstdio> #include <functional> #include <iostream> #include <cfloat> #include <climits> #include <cstring> #include <cmath> #include <map> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <time.h> #include <vector> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> i_i; typedef pair<ll, int> ll_i; typedef pair<double, int> d_i; typedef pair<ll, ll> ll_ll; typedef pair<double, double> d_d; struct edge { ll B, T, F, P; }; ll MOD = 1234567891; ll _MOD = 1000000009; double EPS = 1e-10; int INF = INT_MAX / 10; ll f(ll M, int l, int r, vector<int>& A, map<ll, ll>& mp) { ll unko = (M * 50 + l) * 50 + r; if (mp.count(unko)) return mp[unko]; if (M < 0) return 0; if (M == 0) return 1; if (l >= r) return 0; int N = A.size(); ll sum = 0; for (int m = l; m < r; m++) for (int i = 0; i < A[m]; i++) sum += (f(M / 2 - i, l, m + 1, A, mp) * f(M - (M / 2 - i + A[m]), m, r, A, mp)) % MOD; return mp[unko] = sum % MOD; } int main() { int N; ll M; cin >> N >> M; vector<int> A(N); for (int i = 0; i < N; i++) cin >> A[i]; map<ll, ll> mp; cout << f(M, 0, N, A, mp) << endl; }