记录编号 |
259100 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[USACO Dec07] 魅力手镯 |
最终得分 |
100 |
用户昵称 |
竹语淡墨 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.280 s |
提交时间 |
2016-05-08 07:37:18 |
内存使用 |
0.32 MiB |
显示代码纯文本
#include<iostream>
#include<cstring>
#include<cstdio>
#include<cmath>
using namespace std;
void Work();
int n,m;
int w[13000];
int d[13000];
int f[13000];
int main()
{
freopen("charm.in","r",stdin);
freopen("charm.out","w",stdout);
Work();
fclose(stdin);
fclose(stdout);
return 0;
}
void Work()
{
scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++)
{
scanf("%d%d",&w[i],&d[i]);
}
for(int i=1;i<=n;i++)
{
for(int j=m;j>=w[i];j--)
{
f[j]=max(f[j],f[j-w[i]]+d[i]);
}
}
printf("%d",f[m]);
}