记录编号 |
527028 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2006]开心的金明 |
最终得分 |
100 |
用户昵称 |
Go灬Fire |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.022 s |
提交时间 |
2019-02-06 11:56:38 |
内存使用 |
3.56 MiB |
显示代码纯文本
#include <cmath>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
#define LL long long
#define Inf 1e9
const int maxn=35000;
int W,n;
int w[maxn],v[maxn];
int f[maxn];
void Init();
int main(){
freopen("happy.in","r",stdin);
freopen("happy.out","w",stdout);
Init();
return 0;
}
void Init(){
scanf("%d%d",&W,&n);
for(int i=1;i<=n;i++){
scanf("%d%d",&w[i],&v[i]);
v[i]*=w[i];
}
for(int i=1;i<=n;i++){
for(int j=W;j>=w[i];j--){
f[j]=max(f[j],f[j-w[i]]+v[i]);
}
}
printf("%d\n",f[W]);
}