結果
問題 | No.1269 I hate Fibonacci Number |
ユーザー | leaf_1415 |
提出日時 | 2020-10-23 23:15:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 464 ms / 3,000 ms |
コード長 | 2,649 bytes |
コンパイル時間 | 1,666 ms |
コンパイル使用メモリ | 96,156 KB |
実行使用メモリ | 51,072 KB |
最終ジャッジ日時 | 2024-07-21 13:08:07 |
合計ジャッジ時間 | 4,361 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 5 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,948 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 88 ms
26,368 KB |
testcase_14 | AC | 110 ms
32,768 KB |
testcase_15 | AC | 19 ms
13,568 KB |
testcase_16 | AC | 82 ms
20,992 KB |
testcase_17 | AC | 4 ms
6,940 KB |
testcase_18 | AC | 92 ms
24,192 KB |
testcase_19 | AC | 64 ms
27,008 KB |
testcase_20 | AC | 18 ms
10,368 KB |
testcase_21 | AC | 54 ms
17,024 KB |
testcase_22 | AC | 46 ms
18,688 KB |
testcase_23 | AC | 55 ms
23,040 KB |
testcase_24 | AC | 25 ms
9,088 KB |
testcase_25 | AC | 35 ms
16,896 KB |
testcase_26 | AC | 6 ms
6,940 KB |
testcase_27 | AC | 10 ms
10,752 KB |
testcase_28 | AC | 15 ms
6,940 KB |
testcase_29 | AC | 43 ms
25,856 KB |
testcase_30 | AC | 24 ms
18,432 KB |
testcase_31 | AC | 182 ms
28,800 KB |
testcase_32 | AC | 33 ms
11,520 KB |
testcase_33 | AC | 464 ms
51,072 KB |
testcase_34 | AC | 24 ms
23,424 KB |
testcase_35 | AC | 29 ms
24,064 KB |
testcase_36 | AC | 2 ms
6,944 KB |
testcase_37 | AC | 2 ms
6,940 KB |
testcase_38 | AC | 2 ms
6,944 KB |
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <ctime> #include <cstdlib> #include <cassert> #include <vector> #include <list> #include <stack> #include <queue> #include <deque> #include <map> #include <set> #include <bitset> #include <string> #include <algorithm> #include <utility> #define rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++) #define chmin(x, y) (x) = min((x), (y)) #define chmax(x, y) (x) = max((x), (y)) #define all(x) (x).begin(),(x).end() #define inf 1e18 #define mod 1000000007 using namespace std; typedef long long llint; typedef pair<llint, llint> P; struct AhoCorasick{ struct TrieNode{ int num, sum; int next[26], suff; TrieNode(){ num = sum = 0; for(int i = 0; i < 26; i++) next[i] = -1; } }; vector<TrieNode> trie; AhoCorasick(){ init(); } void init(){ trie.clear(); trie.push_back(TrieNode()); } int seek(string &s) { int p = 0; for(int i = 0; i < s.size(); i++){ int c = s[i]-'0'; if(trie[p].next[c] == -1){ trie.push_back(TrieNode()); trie[p].next[c] = (int)trie.size()-1; } p = trie[p].next[c]; } return p; } int trans(int v, int c) { if(trie[v].next[c] != -1) return trie[v].next[c]; if(v == 0) return 0; return trans(trie[v].suff, c); } void addString(string &s, int x = 1) { int p = seek(s); trie[p].num += x; } void makeSuffixLink() { queue<int> Q; Q.push(0); trie[0].suff = 0; int v; while(Q.size()){ v = Q.front(); Q.pop(); trie[v].sum = trie[v].num + trie[trie[v].suff].sum; for(int i = 0; i < 26; i++){ int u = trie[v].next[i]; if(u == -1) continue; trie[u].suff = trans(trie[v].suff, i); if(v == 0) trie[u].suff = 0; Q.push(u); } } } }; llint n; llint l, r; vector<llint> vec; vector<string> svec; map<string, llint> mp; AhoCorasick aho; llint dp[5005][5005]; string get(llint x) { string ret; for(;x;x/=10) ret += x%10 + '0'; reverse(all(ret)); return ret; } int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> n >> l >> r; llint a = 0, b = 1; while(1){ llint c = a+b; if(c > 1e18) break; if(c >= l && c <= r) vec.push_back(c); a = b, b = c; } for(int i = 0; i < vec.size(); i++){ string s = get(vec[i]); aho.addString(s); } aho.makeSuffixLink(); llint m = aho.trie.size(); dp[0][0] = 1; for(int i = 0; i < n; i++){ for(int j = 0; j < m; j++){ for(int k = 0; k < 10; k++){ int nj = aho.trans(j, k); if(aho.trie[nj].sum == 0) (dp[i+1][nj] += dp[i][j]) %= mod; } } } llint ans = mod-1; for(int i = 0; i < m; i++) ans += dp[n][i], ans %= mod; cout << ans << endl; return 0; }