记录编号 | 444806 | 评测结果 | AAAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [USACO Oct09] Bessie 的体重问题 | 最终得分 | 100 | ||
用户昵称 | liuyu | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.074 s | ||
提交时间 | 2017-09-04 11:47:24 | 内存使用 | 0.49 MiB | ||
#include<bits/stdc++.h> using namespace std; int s,h,n,f[45000+10]; int main(){ freopen("diet.in","r",stdin); freopen("diet.out","w",stdout); scanf("%d%d",&h,&n); for(int i=1;i<=n;i++){ scanf("%d",&s); for(int j=h;j>=0;j--){ if(j>=s)f[j]=max(f[j],f[j-s]+s); } } printf("%d",f[h]); return 0; }