动态规划用数组保存结果,避免重复计算

吃糖果

http://www.nowcoder.com/questionTerminal/72015680c32b449899e81f1470836097

#include<iostream>
#include<cstdio>

using namespace std;
const int maxn=1000;
long long Chocolate[maxn];
int main()
{
	int n;
	Chocolate[0]=0;
	Chocolate[1]=1;
	Chocolate[2]=2;
	for(int i=3;i<=maxn;++i)
		{
			Chocolate[i]=Chocolate[i-1]+Chocolate[i-2];
		}
	while(cin>>n)
	{
		cout<<Chocolate[n]<<endl;
	}
	return 0;
}

全部评论

相关推荐

把球:这个听过,你加了就会发现是字节的hr
点赞 评论 收藏
分享
11-04 14:10
东南大学 Java
_可乐多加冰_:去市公司包卖卡的
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务