记录编号 237054 评测结果 AAAAAAAAAA
题目名称 [NOIP 2006]开心的金明 最终得分 100
用户昵称 Gravatar哒哒哒哒哒! 是否通过 通过
代码语言 C++ 运行时间 0.018 s
提交时间 2016-03-16 08:17:16 内存使用 0.38 MiB
显示代码纯文本
#include<iostream>
#include<cstdlib>
#include<cstdio>
#include<cstring>
#define maxn 26
#define maxm 30000+5
#define max(a,b) ((a)>(b)?(a):(b))

using namespace std;

int n,m;
int w[maxn],c[maxn],f[maxm];

int read()
{
	int x=0,f=1;char ch=getchar();
	while(ch>'9' ||ch<'0'){
		if(ch=='-') f=-1;
		ch=getchar();
	}
	while(ch>='0' && ch<='9'){
		x=x*10+ch-48;
		ch=getchar();
	}
	return x*f;
}

void bag()
{
	for(int i=1;i<=m;i++){
		for(int j=n;j>=w[i];j--){
			f[j]=max(f[j-w[i]]+c[i],f[j]);
		}
	}
}

int main()
{
	freopen("happy.in","r",stdin);
	freopen("happy.out","w",stdout);
	n=read(),m=read();
	for(int i=1;i<=m;i++) w[i]=read(),c[i]=read(),c[i]*=w[i];
	bag();
	printf("%d",f[n]);
	return 0;
}