比赛 |
叫图论的DP题 |
评测结果 |
AAAAAAAAAAA |
题目名称 |
待售干草 |
最终得分 |
100 |
用户昵称 |
东林桂香 |
运行时间 |
0.313 s |
代码语言 |
C++ |
内存使用 |
0.52 MiB |
提交时间 |
2017-08-29 19:36:08 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int c,m;
int ans;
int a[5050],f[50030];
int main(){
freopen("hay4sale.in","r",stdin);
freopen("hay4sale.out","w",stdout);
scanf("%d%d",&c,&m);
for(int i=1;i<=m;i++)scanf("%d",&a[i]);
for(int i=1;i<=m;i++)
for(int j=c;j>=a[i];j--)
f[j]=max(f[j],f[j-a[i]]+a[i]);
printf("%d",f[c]);
fclose(stdin);
fclose(stdout);
return 0;
}