結果
問題 | No.1269 I hate Fibonacci Number |
ユーザー | SSRS |
提出日時 | 2020-10-23 22:55:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,869 bytes |
コンパイル時間 | 2,910 ms |
コンパイル使用メモリ | 201,292 KB |
実行使用メモリ | 31,360 KB |
最終ジャッジ日時 | 2024-07-21 12:05:17 |
合計ジャッジ時間 | 4,672 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 6 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 32 ms
11,520 KB |
testcase_14 | AC | 48 ms
13,696 KB |
testcase_15 | AC | 9 ms
5,376 KB |
testcase_16 | AC | 41 ms
11,008 KB |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 42 ms
11,648 KB |
testcase_19 | AC | 31 ms
9,472 KB |
testcase_20 | AC | 9 ms
5,376 KB |
testcase_21 | AC | 26 ms
8,448 KB |
testcase_22 | AC | 23 ms
7,936 KB |
testcase_23 | AC | 25 ms
8,320 KB |
testcase_24 | AC | 14 ms
5,760 KB |
testcase_25 | AC | 16 ms
6,400 KB |
testcase_26 | AC | 3 ms
5,376 KB |
testcase_27 | RE | - |
testcase_28 | AC | 9 ms
6,944 KB |
testcase_29 | AC | 17 ms
6,940 KB |
testcase_30 | AC | 8 ms
6,940 KB |
testcase_31 | AC | 61 ms
16,000 KB |
testcase_32 | AC | 17 ms
6,940 KB |
testcase_33 | AC | 116 ms
31,360 KB |
testcase_34 | RE | - |
testcase_35 | AC | 8 ms
6,944 KB |
testcase_36 | AC | 8 ms
6,944 KB |
testcase_37 | AC | 2 ms
6,944 KB |
testcase_38 | AC | 11 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const long long MOD = 1000000007; int main(){ int N; cin >> N; long long L, R; cin >> L >> R; vector<long long> F(2, 1); while (1){ long long next = F[F.size() - 2] + F[F.size() - 1]; if (next <= R){ F.push_back(next); } else { break; } } set<string> ng; for (long long x : F){ if (L <= x && x <= R){ ng.insert(to_string(x)); } } vector<string> prf; for (string S : ng){ int len = S.size(); for (int j = 0; j <= len; j++){ prf.push_back(S.substr(0, j)); } } sort(prf.begin(), prf.end()); prf.erase(unique(prf.begin(), prf.end()), prf.end()); int V = prf.size(); map<string, int> id; for (int i = 0; i < V; i++){ id[prf[i]] = i; } vector<vector<int>> next(V, vector<int>(10, -1)); for (int i = 0; i < V; i++){ for (int j = 0; j <= 9; j++){ string S = prf[i]; S += '0' + j; int len = S.size(); bool ok = true; for (int k = 0; k <= len; k++){ string T = S.substr(k); if (ng.count(T)){ ok = false; } } if (ok){ for (int k = 0; k <= len; k++){ string T = S.substr(k); if (id.count(T)){ next[i][j] = id[T]; break; } } } } } vector<vector<long long>> dp(N + 1, vector<long long>(V, 0)); dp[0][0] = 1; for (int i = 0; i < N; i++){ for (int j = 0; j < V; j++){ for (int k = 0; k <= 9; k++){ if (next[j][k] != -1){ if (!(i == 0 && k == 0)){ dp[i + 1][next[j][k]] += dp[i][j]; dp[i + 1][next[j][k]] %= MOD; } } } } } long long ans = 0; for (int i = 1; i <= N; i++){ for (int j = 0; j < V; j++){ ans += dp[i][j]; ans %= MOD; } } cout << ans << endl; }