HDU 5620 KK's Steel

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 5620 KK's Steel相关的知识,希望对你有一定的参考价值。

想了一下发现是斐波那契数列.....水题

#include <stdio.h>
#include <algorithm>
#include <string.h>
#include <queue>
#include <stack>
#include <map>
#include <vector>
using namespace std;

const int maxn=1000;
long long n;
long long a[maxn];

void init()
{
    a[1]=1; a[2]=2;
    for(int i=3;i<=90;i++) a[i]=a[i-1]+a[i-2];
}

int main()
{
    init();
    int T;
    scanf("%d",&T);
    while(T--)
    {scanf("%lld",&n);
        int ans;
        long long sum=0;
        for(int i=1;;i++)
        {
            sum=sum+a[i];
            if(sum<=n) ans=i;
            else break;
        }
        printf("%d\n",ans);
    }
    return 0;
}

 

以上是关于HDU 5620 KK's Steel的主要内容,如果未能解决你的问题,请参考以下文章

BestCoder Round #71 (div.2) (hdu 5620 菲波那切数列变形)

HDU 5624 KK's Reconstruction(最小生成树)

hdu 5623 KK's Number(dp)

HDU 5624 KK's Reconstruction

HDU 5624 KK's Reconstruction

hdu 5621 KK's Point(数学,推理题)