记录编号 338719 评测结果 AAAAAAAAAA
题目名称 [USACO Mar08] 奶牛渡河 最终得分 100
用户昵称 Gravatar蜗牛哲 是否通过 通过
代码语言 C++ 运行时间 0.015 s
提交时间 2016-11-05 14:50:52 内存使用 0.33 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<climits>
#include<cstdlib>
#include<ctime>
#include<cctype>
#include<algorithm>
#include<set>
#include<map>
#include<vector>
#include<stack>
#include<queue>
#include<deque>
#include<string>
#include<sstream>
#include<iomanip>
using namespace std;
//=====================struct declaration======================

//=====================var declarartion========================
const int maxn=2500+10;
int f[maxn],s[maxn];

int n,m;
//=====================function declaration====================
int getint();
//=====================main code===============================
int main()
{
	freopen("cowriver.in","r",stdin);
	freopen("cowriver.out","w",stdout);
	
	n=getint(); m=getint();
	f[0]=m;
	for(int i=1; i<=n; i++)
	{
		int x;
		x=getint();
		f[i]=f[i-1]+x;
	}
	
	for(int i=1; i<=n; i++)
	{
		for(int j=1; j<i; j++)
		{
			f[i]=min(f[i],f[i-j]+f[j]+m);
		}
	}
	
	cout<<f[n]<<endl;
	
	return 0;
}
//=====================function code===========================
int getint()
{
	int x=0,s=1;
	char ch=' ';
	while(ch<'0' || ch>'9')
	{
		ch=getchar();
		if(ch=='-') s==-1;
	}
	while(ch>='0' && ch<='9')
	{
		x=x*10+ch-'0';
		ch=getchar();
	}
	return x*s;
}