比赛 20111111 评测结果 WWWWWWWWWW
题目名称 最优分解方案 最终得分 0
用户昵称 风华正茂 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2011-11-11 10:26:44
显示代码纯文本
#include<fstream>
using namespace std;
ifstream cin("best.in");
ofstream cout("best.out");
long long a[1001][2];
int n;
long long max(long long x,long long y)
{
	if(x>y)
		return x;
	else
		return y;
}
void you(int tot)
{
	long long i,temp,max1=0,max2=0;
	for(i=1;i<tot;i++)
	{
		temp=tot-i;
		if(temp!=i)
		{
			max1=max(a[temp][0],a[temp][1])*max(a[i][0],a[i][1]);
		}
		if(max2<max1)
			max2=max1;
	}
	a[tot][1]=max2;
}
int main()
{
	int i;
	cin>>n;
	for(i=1;i<=n;i++)
	{
		a[i][0]=i;
		you(i);
	}
	cout<<a[n][1]<<endl;
	return 0;
}