记录编号 |
373995 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[USACO Dec07] 魅力手镯 |
最终得分 |
100 |
用户昵称 |
HeHe |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.101 s |
提交时间 |
2017-02-22 09:13:10 |
内存使用 |
0.33 MiB |
显示代码纯文本
#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
#define is_num(tmp) (tmp<='9'&tmp>='0')
inline int in()
{
char tmp(getchar());
int res(0);
while(!is_num(tmp))tmp=getchar();
while(is_num(tmp))
res=(res<<1)+(res<<3)+(tmp^48),
tmp=getchar();
return res;
}
//#define LOCAL
int dp[12881];
int w,v;
int W,N;
int main()
{
#ifndef LOCAL
freopen("charm.in","r",stdin);
freopen("charm.out","w",stdout);
#endif
N=in(),W=in();
for(int i=1;i<=N;++i)
{
w=in(),v=in();
for(int j=W;j>=w;--j)
dp[j]=max(dp[j-w]+v,dp[j]);
}
printf("%d",dp[W]);
}