比赛 叫图论的DP题 评测结果 AAAAAAAAAAA
题目名称 Bessie 的体重问题 最终得分 100
用户昵称 Hyoi_iostream 运行时间 0.003 s
代码语言 C++ 内存使用 0.09 MiB
提交时间 2017-08-29 20:26:46
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
int weight,N;
int a[505],f[45005]; 
int Main(){
	freopen("diet.in","r",stdin);
	freopen("diet.out","w",stdout);
	scanf("%d%d",&weight,&N);
	for(int i=1;i<=N;i++) scanf("%d",&a[i]);
	for(int i=1;i<=N;i++)
	    for(int j=weight;j>=a[i];j--){
	    	int temp=f[j-a[i]]+a[i];
	    	if(temp>f[j]) f[j]=temp;
		}
		printf("%d",f[weight]);
	//	fclose(stdin);
	//	fclose(stdout);
		return 0;
}
int work=Main();
int main(){;
}