結果
問題 | No.1269 I hate Fibonacci Number |
ユーザー | kmjp |
提出日時 | 2020-10-24 00:16:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 429 ms / 3,000 ms |
コード長 | 2,488 bytes |
コンパイル時間 | 2,797 ms |
コンパイル使用メモリ | 223,724 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-21 14:09:38 |
合計ジャッジ時間 | 5,055 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 4 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 79 ms
6,940 KB |
testcase_14 | AC | 84 ms
6,940 KB |
testcase_15 | AC | 8 ms
6,940 KB |
testcase_16 | AC | 68 ms
6,940 KB |
testcase_17 | AC | 3 ms
6,940 KB |
testcase_18 | AC | 79 ms
6,940 KB |
testcase_19 | AC | 39 ms
6,940 KB |
testcase_20 | AC | 11 ms
6,940 KB |
testcase_21 | AC | 43 ms
6,944 KB |
testcase_22 | AC | 30 ms
6,940 KB |
testcase_23 | AC | 33 ms
6,940 KB |
testcase_24 | AC | 21 ms
6,940 KB |
testcase_25 | AC | 21 ms
6,940 KB |
testcase_26 | AC | 3 ms
6,940 KB |
testcase_27 | AC | 3 ms
6,940 KB |
testcase_28 | AC | 14 ms
6,940 KB |
testcase_29 | AC | 19 ms
6,940 KB |
testcase_30 | AC | 9 ms
6,940 KB |
testcase_31 | AC | 150 ms
6,944 KB |
testcase_32 | AC | 26 ms
6,940 KB |
testcase_33 | AC | 429 ms
6,944 KB |
testcase_34 | AC | 4 ms
6,940 KB |
testcase_35 | AC | 9 ms
6,944 KB |
testcase_36 | AC | 2 ms
6,940 KB |
testcase_37 | AC | 2 ms
6,940 KB |
testcase_38 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- int N; ll L,R; ll F[150]; const int NUMC=10; class Trie { public: vector<vector<int> > V; int find(string s) { int cur=0; ITR(it,s) if((cur=V[cur][*it+1])==0) return -1; return cur; } void create(vector<string> S) { // 0 is for backtrack V.clear(); V.push_back(vector<int>(NUMC+1)); sort(S.begin(),S.end()); ITR(it,S) { int cur=0; ITR(c,(*it)) { if(V[cur][*c+1]==0) V.push_back(vector<int>(NUMC+1)),V[cur][*c+1]=V.size()-1; cur=V[cur][*c+1]; } } } }; class ACmatch_num { public: Trie t; vector<int> acc; int ma; void create(vector<string> S) { int i; ma=S.size(); t.create(S); acc.clear(); acc.resize(t.V.size()); FOR(i,S.size()) acc[t.find(S[i])]++; queue<int> Q; FOR(i,NUMC) if(t.V[0][i+1]) t.V[t.V[0][i+1]][0]=0, Q.push(t.V[0][i+1]); while(!Q.empty()) { int k=Q.front(); Q.pop(); FOR(i,NUMC) if(t.V[k][i+1]) { Q.push(t.V[k][i+1]); int pre=t.V[k][0]; while(pre && t.V[pre][i+1]==0) pre=t.V[pre][0]; t.V[t.V[k][i+1]][0]=t.V[pre][i+1]; acc[t.V[k][i+1]] += acc[t.V[pre][i+1]]; } } } int nex(int cur,int c) { while(cur && t.V[cur][c+1]==0) cur=t.V[cur][0]; return t.V[cur][c+1]; } }; ACmatch_num ac; ll from[1010]; ll to[1010]; const ll mo=1000000007; void solve() { int i,j,k,l,r,x,y; string s; vector<string> NG; cin>>N>>L>>R; F[0]=F[1]=1; for(i=1;i<=140;i++) { if(i>=2) F[i]=F[i-1]+F[i-2]; if(F[i]>R) break; if(F[i]>=L) NG.push_back(to_string(F[i])); } FORR(s,NG) FORR(c,s) c-='0'; ac.create(NG); from[0]=1; while(N--) { ZERO(to); FOR(i,ac.t.V.size()) { FOR(j,10) { x=ac.nex(i,j); if(ac.acc[x]==0) (to[x]+=from[i])%=mo; } } swap(from,to); } ll ret=mo-1; FOR(i,ac.t.V.size()) ret+=from[i]; cout<<ret%mo<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }