比赛 叫图论的DP题 评测结果 AAAAAAAAAA
题目名称 开心的金明 最终得分 100
用户昵称 TARDIS 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2017-08-29 20:15:12
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<stack>
#include<queue>
#include<cstring>
#include<deque>
#define itn int
#define coder goodboy
using namespace std;
typedef long long LL;typedef unsigned long long ULL;
const int maxn=30,maxv=30010;
int n,w[maxn],v[maxn],f[maxv],c[maxn],temp,maxmoney,ans=-1;
inline void in(){
	freopen("happy.in","r",stdin);
	freopen("happy.out","w",stdout);
	scanf("%d%d",&maxmoney,&n);
	for (int i=1;i<=n;i++){
		scanf("%d%d",&c[i],&temp);
		w[i]=c[i]*temp;
	}
}
inline void dp(){
	memset(f,0,sizeof(f));
	for (int i=1;i<=n;i++){
		for (int v=maxmoney;v>=c[i];v--){
			f[v]=max(f[v],f[v-c[i]]+w[i]);
			ans=max(ans,f[v]);
		}
	}
}
inline void p(){
	printf("%d",ans);
}
int Main(){
	in();
	dp();
	p();
	return 0;
}
int main(){;}
int goodboy=Main();