记录编号 |
192816 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[HNOI 2004] 打砖块 |
最终得分 |
100 |
用户昵称 |
devil |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.664 s |
提交时间 |
2015-10-12 22:27:11 |
内存使用 |
54.90 MiB |
显示代码纯文本
#include <cstdlib>
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <map>
#include <stack>
#include <queue>
#include <ctime>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef unsigned int uint;
const int inf=1061109567;
const int maxn=55;
const int maxm=510;
const int mod=7777777;
int f[maxn][maxm][maxm];
int s[maxn][maxn];
int main()
{
freopen("brike.in","r",stdin);
freopen("brike.out","w",stdout);
//clock_t st=clock();
int n,m,a;scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n-i+1;j++)
{
scanf("%d",&a);
s[i+j-1][i]=s[i+j-1][i-1]+a;
}
}
memset(f,-0x3f,sizeof(f));
f[0][0][0]=0;
for(int i=1;i<=n;i++)
{
for(int j=0;j<=i;j++)
{
for(int k=j;k<=m;k++)
{
for(int p=(j-1<0)?0:j-1;p<=i-1;p++)
{
f[i][j][k]=max(f[i][j][k],f[i-1][p][k-j]+s[i][j]);
}
}
}
}
int ans=0;
for(int i=1;i<=n;i++)
{
for(int j=0;j<=i;j++)
{
ans=max(ans,f[i][j][m]);
}
}
printf("%d\n",ans);
//clock_t ed=clock();
//printf("\nTime used : %.5lf Ms\n",double(ed-st)/CLOCKS_PER_SEC);
return 0;
}