結果
問題 | No.189 SUPER HAPPY DAY |
ユーザー | airis |
提出日時 | 2015-06-07 21:05:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,879 bytes |
コンパイル時間 | 657 ms |
コンパイル使用メモリ | 82,508 KB |
実行使用メモリ | 14,720 KB |
最終ジャッジ日時 | 2024-07-06 14:34:37 |
合計ジャッジ時間 | 1,810 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 18 ms
9,088 KB |
testcase_25 | AC | 36 ms
14,720 KB |
ソースコード
#include <iostream> #include <algorithm> #include <string> #include <vector> #include <queue> #include <stack> #include <set> #include <map> #include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <numeric> #include <bitset> #include <complex> #define rep(x, to) for (int x = 0; x < (to); x++) #define REP(x, a, to) for (int x = (a); x < (to); x++) #define foreach(itr, x) for (typeof((x).begin()) itr = (x).begin(); itr != (x).end(); itr++) #define EPS (1e-14) using namespace std; typedef long long ll; typedef pair<int, int> PII; typedef pair<long, long> PLL; const ll MOD = 1e+9 + 9; string s, t; ll dp[205][1805][2]; ll dp2[205][1805][2]; ll ans; void solve() { dp[s.size()][0][0] = 1; dp[s.size()][0][1] = 1; for (int i = s.size() - 1; i >= 0; i--) { for (int j = 0; j <= 1800; j++) { for (int k = 0; k < 10; k++) { dp[i][j][0] += dp[i + 1][j - k][0]; dp[i][j][0] %= MOD; } for (int k = 0; k <= j && k < s[i] - '0'; k++) { dp[i][j][1] += dp[i + 1][j - k][0]; dp[i][j][1] %= MOD; } if (j - (s[i] - '0') >= 0) { dp[i][j][1] += dp[i + 1][j - (s[i] - '0')][1]; dp[i][j][1] %= MOD; } } } dp2[t.size()][0][0] = 1; dp2[t.size()][0][1] = 1; for (int i = t.size() - 1; i >= 0; i--) { for (int j = 0; j <= 1800; j++) { for (int k = 0; k < 10; k++) { dp2[i][j][0] += dp2[i + 1][j - k][0]; dp2[i][j][0] %= MOD; } for (int k = 0; k <= j && k < s[i] - '0'; k++) { dp2[i][j][1] += dp2[i + 1][j - k][0]; dp2[i][j][1] %= MOD; } if (j - (s[i] - '0') >= 0) { dp2[i][j][1] += dp2[i + 1][j - (s[i] - '0')][1]; dp2[i][j][1] %= MOD; } } } #if 0 cout << dp[0][13][1] << endl; #endif REP(i, 0, 1800 + 1) { ans += (dp[0][i][1] * dp2[0][i][1]) % MOD; ans %= MOD; } cout << ((ans-1) + MOD) % MOD << endl; } int main() { cin >> s >> t; solve(); return 0; }