记录编号 247901 评测结果 AAAAAAAAAA
题目名称 [NOIP 2006]能量项链 最终得分 100
用户昵称 GravatarNewBee 是否通过 通过
代码语言 C++ 运行时间 0.351 s
提交时间 2016-04-09 20:29:47 内存使用 14.28 MiB
显示代码纯文本
#include<cstdio>
#include<cstring>
#define Cu chul();fclose(stdin);fclose(stdout);return 0;
#define Begin() freopen("energy.in","r",stdin);freopen("energy.out","w",stdout);Cu;
using namespace std;
const int maxn=1010;
int h[maxn<<1];
int f[maxn<<1][maxn<<1];
void chul();
int getmax(int,int);
int main(){
	Begin();
}
void chul(){
	memset(h,0,sizeof(h));
	memset(f,0,sizeof(f));
	int n;
	scanf("%d",&n);
	for(int i=1;i<=n;i++){
		scanf("%d",&h[i]);
		h[i+n]=h[i];
	}
	h[n<<1|1]=h[1];
	int gmax=-1;
	for(int d=2;d<=n;d++){
		for(int i=1;i<=n*2-d+1;i++){
			int j=i+d-1;
			for(int k=i;k<j;k++){
				f[i][j]=getmax(f[i][j],f[i][k]+f[k+1][j]+h[i]*h[k+1]*h[j+1]);
			}
			if(d==n&&gmax<f[i][j])gmax=f[i][j];
		}
	}
	printf("%d",gmax);
}
int getmax(int x,int y){
	if(x>y)return x;
	return y;
}