记录编号 410898 评测结果 WWWWWWWWWW
题目名称 [HAOI 2008]硬币购物 最终得分 0
用户昵称 Gravatarsakura 是否通过 未通过
代码语言 C++ 运行时间 0.005 s
提交时间 2017-06-02 21:22:25 内存使用 0.33 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#define inf 99999999
using namespace std;
inline int read()
{
    int x=0;char ch=getchar();
    while(ch<'0'||ch>'9')ch=getchar();
    while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x;
}
int n;
int s[2505],f[2505];
int main()
{
	freopen("coin.in","r",stdin);
	freopen("coin.out","w",stdout);
	n=read();s[0]=read();
	for(int i=1;i<=n;i++)
	{
		int x=read();
		s[i]=s[i-1]+x;
	}
	for(int i=1;i<=n;i++)
    {
    	f[i]=inf;
	    for(int j=1;j<=i;j++)
	        f[i]=min(f[i],f[i-j]+s[j]+s[0]);
	}
	printf("%d",f[n]-s[0]);
	return 0;
}