結果
問題 | No.319 happy b1rthday 2 me |
ユーザー | pekempey |
提出日時 | 2015-12-12 00:44:03 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,825 bytes |
コンパイル時間 | 1,268 ms |
コンパイル使用メモリ | 162,992 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-15 08:30:55 |
合計ジャッジ時間 | 2,177 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,944 KB |
testcase_29 | AC | 2 ms
6,940 KB |
testcase_30 | AC | 2 ms
6,940 KB |
testcase_31 | AC | 2 ms
6,944 KB |
testcase_32 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> #define GET_MACRO(a, b, c, NAME, ...) NAME #define rep(...) GET_MACRO(__VA_ARGS__, rep3, rep2)(__VA_ARGS__) #define rep2(i, a) rep3 (i, 0, a) #define rep3(i, a, b) for (int i = (a); i < (b); i++) #define repr(...) GET_MACRO(__VA_ARGS__, repr3, repr2)(__VA_ARGS__) #define repr2(i, a) repr3 (i, 0, a) #define repr3(i, a, b) for (int i = (b) - 1; i >= (a); i--) template<class T1, class T2> inline bool chmin(T1 &a, T2 b) { return b < a && (a = b, true); } template<class T1, class T2> inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); } using namespace std; typedef long long ll; ll dp[20][2][2][20][2]; // less, 0-1, num 12, leading zero pair<ll, ll> f(string S, bool less, bool onetwo) { memset(dp, 0, sizeof(dp)); int n = S.length(); dp[0][0][0][0][0] = 1; rep (i, n) rep (j, 2) { rep (k, 2) rep (l, 19) rep (m, 2) { int lim = j ? 9 : S[i] - '0'; rep (x, lim + 1) { if (onetwo && !m && x > 0 && x != 2) continue; if (onetwo && i == n - 1 && x != 1) continue; if (k == 0 && x == 1) { dp[i + 1][j || x < lim][1][l][m || x > 0] += dp[i][j][k][l][m]; } else if (k == 1 && x == 1) { dp[i + 1][j || x < lim][1][l][m || x > 0] += dp[i][j][k][l][m]; } else if (k == 1 && x == 2) { dp[i + 1][j || x < lim][0][l + 1][m || x > 0] += dp[i][j][k][l][m]; } else { dp[i + 1][j || x < lim][0][l][m || x > 0] += dp[i][j][k][l][m]; } } } } ll res1 = 0, res2 = 0; rep (j, 2) rep (k, 2) rep (l, 20) rep (m, 2) { if (j == 0 && less) continue; res1 += dp[n][j][k][l][m] * l; res2 += dp[n][j][k][l][m]; } return {res1, res2}; } int main() { string A, B; cin >> A >> B; ll ans = f(B, false, false).first - f(A, true, false).first; ans += f(B, true, true).second - f(A, false, true).second; cout << ans << endl; return 0; }