我正在解决这个问题-> http://www.spoj.com/problems/SAMER08F/(一个非常简单的问题)......我第一次得到AC......我的解决方案是这样的(非常直截了当) :
#include<iostream>
using namespace std;
int main()
{
int n;
scanf("%d",&n);
while(n!=0)
{
printf("%d",((n)*(n+1)*((2*n)+1))/6);
printf("\n");
scanf("%d",&n);
}
return 0;
}
我正在浏览这个列表http://ahmed-aly.com/Category.jsp?ID=33,我发现费曼被列为 DP 问题......我是 DP 的初学者,无法弄清楚这个问题是如何构成的的子问题。寻找递归关系的任何帮助或提示都将非常有帮助。