結果

問題 No.1269 I hate Fibonacci Number
ユーザー butsurizukibutsurizuki
提出日時 2020-10-23 23:44:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 3,000 ms
コード長 1,570 bytes
コンパイル時間 1,987 ms
コンパイル使用メモリ 187,084 KB
実行使用メモリ 202,460 KB
最終ジャッジ日時 2024-07-21 13:46:30
合計ジャッジ時間 5,380 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
199,768 KB
testcase_01 AC 50 ms
199,892 KB
testcase_02 AC 54 ms
201,416 KB
testcase_03 AC 50 ms
199,776 KB
testcase_04 AC 50 ms
200,164 KB
testcase_05 AC 49 ms
199,776 KB
testcase_06 AC 50 ms
201,048 KB
testcase_07 AC 51 ms
199,524 KB
testcase_08 AC 50 ms
200,288 KB
testcase_09 AC 50 ms
199,388 KB
testcase_10 AC 50 ms
200,160 KB
testcase_11 AC 50 ms
199,528 KB
testcase_12 AC 50 ms
200,804 KB
testcase_13 AC 56 ms
200,784 KB
testcase_14 AC 66 ms
200,796 KB
testcase_15 AC 55 ms
199,956 KB
testcase_16 AC 74 ms
202,460 KB
testcase_17 AC 51 ms
200,124 KB
testcase_18 AC 70 ms
201,476 KB
testcase_19 AC 64 ms
201,024 KB
testcase_20 AC 55 ms
200,348 KB
testcase_21 AC 62 ms
200,072 KB
testcase_22 AC 63 ms
200,872 KB
testcase_23 AC 60 ms
200,012 KB
testcase_24 AC 60 ms
200,584 KB
testcase_25 AC 57 ms
199,792 KB
testcase_26 AC 51 ms
200,240 KB
testcase_27 AC 49 ms
200,408 KB
testcase_28 AC 55 ms
200,792 KB
testcase_29 AC 60 ms
199,912 KB
testcase_30 AC 54 ms
199,808 KB
testcase_31 AC 70 ms
201,284 KB
testcase_32 AC 59 ms
199,888 KB
testcase_33 AC 75 ms
201,344 KB
testcase_34 AC 51 ms
200,656 KB
testcase_35 AC 55 ms
200,240 KB
testcase_36 AC 65 ms
201,600 KB
testcase_37 AC 50 ms
199,640 KB
testcase_38 AC 65 ms
201,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define mod 1000000007

using namespace std;

using Graph=vector<vector<int>>;

long long remtop(long long v){
  if(v<10){return 0;}
  string mem=to_string(v);
  mem.erase(0,1);
  return stoll(mem);
}

int main(){
  set<long long> st;
  map<long long,int> mp;
  long long n,a,b;
  cin >> n >> a >> b;
  long long f[128];
  f[0]=1;f[1]=1;
  for(int i=0;;i++){
    if(i>=2){f[i]=f[i-1]+f[i-2];}
    if(f[i]>b){break;}
    if(f[i]<a){continue;}
    mp[f[i]]=-1;
    long long v=f[i];
    while(v>0){
      st.insert(v);
      v/=10;
    }
  }
  st.insert(0);
  int c=0;
  long long val[524288];
  for(auto x: st){
    if(mp[x]==-1){continue;}
    //printf("[[[%lld]]]\n",x);
    mp[x]=c;
    val[c]=x;
    c++;
  }
  //printf("%d\n",mp[55]);
  Graph g(c);
  for(int i=0;i<c;i++){
    long long cv=val[i];
    for(long long j=0;j<10;j++){
      long long nv=cv*10+j;
      long long k=0;
      while(nv>0){
        if(mp[nv]==-1){k=-1;break;}
        if(mp[nv]!=0 && k==0){k=mp[nv];}
        nv=remtop(nv);
      }
      //printf("%d(%d + %d) -> %d\n",i,cv,j,k);
      if(k==-1){continue;}
      g[i].push_back(k);
    }
  }
  long long dp[5005][5005]={0},res=0;
  for(int i=0;i<n;i++){
    for(int j=0;j<c;j++){
      if(dp[i][j]==0){continue;}
      for(auto nx : g[j]){
        dp[i+1][nx]+=dp[i][j];
      }
    }
    for(int j=1;j<10;j++){
      if(mp[j]!=-1){
        dp[i+1][mp[j]]++;
      }
    }
    res=0;
    for(int j=0;j<c;j++){
      dp[i+1][j]%=mod;
      res+=dp[i+1][j];
    }
    res%=mod;
  }
  printf("%lld\n",res);
  return 0;
}
0