HDU 4099 Revenge of Fibonacci(ディクショナリツリー)
16257 ワード
Revenge of Fibonacci
Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 204800/204800 K (Java/Others)Total Submission(s): 914 Accepted Submission(s): 197
Problem Description
The well-known Fibonacci sequence is defined as following:
Here we regard n as the index of the Fibonacci number F(n).
This sequence has been studied since the publication of Fibonacci's book Liber Abaci. So far, many properties of this sequence have been introduced.
You had been interested in this sequence, while after reading lots of papers about it. You think there’s no need to research in it anymore because of the lack of its unrevealed properties. Yesterday, you decided to study some other sequences like Lucas sequence instead.
Fibonacci came into your dream last night. “Stupid human beings. Lots of important properties of Fibonacci sequence have not been studied by anyone, for example, from the Fibonacci number 347746739…”
You woke up and couldn’t remember the whole number except the first few digits Fibonacci told you. You decided to write a program to find this number out in order to continue your research on Fibonacci sequence.
Input
There are multiple test cases. The first line of input contains a single integer T denoting the number of test cases (T<=50000).
For each test case, there is a single line containing one non-empty string made up of at most 40 digits. And there won’t be any unnecessary leading zeroes.
Output
For each test case, output the smallest index of the smallest Fibonacci number whose decimal notation begins with the given digits. If no Fibonacci number with index smaller than 100000 satisfy that condition, output -1 instead – you think what Fibonacci wants to told you beyonds your ability.
Sample Input
15 1 12 123 1234 12345 9 98 987 9876 98765 89 32 51075176167176176176 347746739 5610
Sample Output
Case #1: 0 Case #2: 25 Case #3: 226 Case #4: 1628 Case #5: 49516 Case #6: 15 Case #7: 15 Case #8: 15 Case #9: 43764 Case #10: 49750 Case #11: 10 Case #12: 51 Case #13: -1 Case #14: 1233 Case #15: 22374
Source
2011 Asia Shanghai Regional Contest
Recommend
lcy
2011年上海試合区の現場試合のテーマ.
その時の試合のやり方を考えて、どんどん加えて、カット処理をしました.
でもその時は辞書の木が使えなくて、検索する時TLEになってしまいました...その時は弱すぎて銀メダルを逃した~~~
今年もがんばろう!
実はこの問題はある数字で始まるフィボナッチ数列を求めることです.
上位40桁の数字しかないからです.したがって、加算時に長さが50程度を超えるとビット上のものを切り取り、高位を残す.
次に、辞書ツリーを作成して検索します.
もう一つの場所は、木を建てるときに長さ40まで建てればいいということです.さもないと長くなるとMLEになります
Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 204800/204800 K (Java/Others)Total Submission(s): 914 Accepted Submission(s): 197
Problem Description
The well-known Fibonacci sequence is defined as following:
Here we regard n as the index of the Fibonacci number F(n).
This sequence has been studied since the publication of Fibonacci's book Liber Abaci. So far, many properties of this sequence have been introduced.
You had been interested in this sequence, while after reading lots of papers about it. You think there’s no need to research in it anymore because of the lack of its unrevealed properties. Yesterday, you decided to study some other sequences like Lucas sequence instead.
Fibonacci came into your dream last night. “Stupid human beings. Lots of important properties of Fibonacci sequence have not been studied by anyone, for example, from the Fibonacci number 347746739…”
You woke up and couldn’t remember the whole number except the first few digits Fibonacci told you. You decided to write a program to find this number out in order to continue your research on Fibonacci sequence.
Input
There are multiple test cases. The first line of input contains a single integer T denoting the number of test cases (T<=50000).
For each test case, there is a single line containing one non-empty string made up of at most 40 digits. And there won’t be any unnecessary leading zeroes.
Output
For each test case, output the smallest index of the smallest Fibonacci number whose decimal notation begins with the given digits. If no Fibonacci number with index smaller than 100000 satisfy that condition, output -1 instead – you think what Fibonacci wants to told you beyonds your ability.
Sample Input
15 1 12 123 1234 12345 9 98 987 9876 98765 89 32 51075176167176176176 347746739 5610
Sample Output
Case #1: 0 Case #2: 25 Case #3: 226 Case #4: 1628 Case #5: 49516 Case #6: 15 Case #7: 15 Case #8: 15 Case #9: 43764 Case #10: 49750 Case #11: 10 Case #12: 51 Case #13: -1 Case #14: 1233 Case #15: 22374
Source
2011 Asia Shanghai Regional Contest
Recommend
lcy
2011年上海試合区の現場試合のテーマ.
その時の試合のやり方を考えて、どんどん加えて、カット処理をしました.
でもその時は辞書の木が使えなくて、検索する時TLEになってしまいました...その時は弱すぎて銀メダルを逃した~~~
今年もがんばろう!
実はこの問題はある数字で始まるフィボナッチ数列を求めることです.
上位40桁の数字しかないからです.したがって、加算時に長さが50程度を超えるとビット上のものを切り取り、高位を残す.
次に、辞書ツリーを作成して検索します.
/*
HDU 4099
*/
#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<iostream>
using namespace std;
char c[100];
void add(char a[],char b[],char back[])// a+b, c,
{
int i,j,k;
int x,y,z;
int up;
i=strlen(a)-1;
j=strlen(b)-1;
k=0;
up=0;
while(i>=0||j>=0)
{
if(i<0)x=0;
else x=a[i]-'0';
if(j<0)y=0;
else y=b[j]-'0';
z=x+y+up;
c[k++]=z%10+'0';
up=z/10;
i--;
j--;
}
if(up>0)c[k++]=up+'0';
for(i=0;i<k;i++)back[i]=c[k-1-i];
back[k]='\0';
}
const int MAX=10;
typedef struct Node
{
int id;
struct Node *next[MAX];
}TrieNode;
TrieNode *head;
void Tree_insert(char str[],int index)//
{
Node *t,*s=head;
int i,j;
int len=strlen(str);
for(i=0;i<len&&i<41;i++)
{
int id=str[i]-'0';
if(s->next[id]==NULL)
{
t=new Node;
for(j=0;j<10;j++)
{
t->next[j]=NULL;
}
t->id=-1;
s->next[id]=t;
}
s=s->next[id];
if(s->id<0)s->id=index;
}
}
int Tree_Find(char str[])
{
Node *s=head;
int count,i;
int len=strlen(str);
for(i=0;i<len;i++)
{
int id=str[i]-'0';
if(s->next[id]==NULL)
{
return -1;
}
else
{
s=s->next[id];
count=s->id;
}
}
return count;
}
void Tree_Del(Node *p)
{
for(int i=0;i<10;i++)
{
if(p->next[i]!=NULL)
Tree_Del(p->next[i]);
}
free(p);
}
char str[3][100];
int main()
{
// freopen("in.txt","r",stdin);
// freopen("out.txt","w",stdout);
head=new Node;
for(int i=0;i<10;i++)head->next[i]=NULL;
head->id=-1;
str[0][0]='1';
str[0][1]=0;
Tree_insert(str[0],0);
str[1][0]='1';
str[1][1]=0;
Tree_insert(str[1],1);
for(int i=2;i<100000;i++)// , 。。WA
{
int len1=strlen(str[0]);
int len2=strlen(str[1]);
if(len2>60)
{
str[1][len2-1]=0;
str[0][len1-1]=0;
}
add(str[0],str[1],str[2]);
// printf("%s
",str[2]);
Tree_insert(str[2],i);
strcpy(str[0],str[1]);
strcpy(str[1],str[2]);
// for(int i=0;i<100;i++)str[0][i]=str[1][i];
// for(int i=0;i<100;i++)str[1][i]=str[2][i];
}
int T;
char str1[60];
scanf("%d",&T);
int iCase=0;
while(T--)
{
iCase++;
scanf("%s",&str1);
printf("Case #%d: %d
",iCase,Tree_Find(str1));
}
Tree_Del(head);
return 0;
}
もう一つの場所は、木を建てるときに長さ40まで建てればいいということです.さもないと長くなるとMLEになります