博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ-3624 01背包入门
阅读量:6766 次
发布时间:2019-06-26

本文共 1406 字,大约阅读时间需要 4 分钟。

还是入门题,只不过需要优化一下空间,不然就会内存超限

Bessie has gone to the mall's jewelry store and spies a charm bracelet. Of course, she'd like to fill it with the best charms possible from the N (1 ≤ N ≤ 3,402) available charms. Each charm i in the supplied list has a weight Wi (1 ≤ Wi ≤ 400), a 'desirability' factor Di (1 ≤ Di ≤ 100), and can be used at most once. Bessie can only support a charm bracelet whose weight is no more than M (1 ≤ M ≤ 12,880).

Given that weight limit as a constraint and a list of the charms with their weights and desirability rating, deduce the maximum possible sum of ratings.

Input

* Line 1: Two space-separated integers: N and M

* Lines 2..N+1: Line i+1 describes charm i with two space-separated integers: Wi and Di

Output

* Line 1: A single integer that is the greatest sum of charm desirabilities that can be achieved given the weight constraints

Sample Input

4 61 42 63 122 7

Sample Output

23
 
1 #include
2 #include
3 #include
4 #include
5 using namespace std; 6 int dp[15000]; 7 int main() 8 { 9 int n,w,c,val;10 cin>>n>>w;11 for(int i=1;i<=n;i++)12 {13 scanf("%d%d",&c,&val);14 for(int j=w;j>=c;j--)15 {16 dp[j]=max(dp[j],dp[j-c]+val);17 }18 }19 cout<
<
 

 

 
 

转载于:https://www.cnblogs.com/ISGuXing/p/7209035.html

你可能感兴趣的文章
ZStack实践汇|快照和备份的区别
查看>>
Android显示还不错的EditText
查看>>
ssh 的简介与使用
查看>>
计算机linux系统 第一课
查看>>
关于paramiko使用的问题
查看>>
我的友情链接
查看>>
回首2011年
查看>>
在 MaxCompute UDF 中运行 Scipy
查看>>
8月27日科技联播:滴滴5000亿上市计划或受影响,高德地图暂时下线顺风车业务...
查看>>
网站漏洞修复对phpmyadmin防止被入侵提权的解决办法
查看>>
Redis入门到精通-Nosql介绍
查看>>
以太坊是什么 - 以太坊开发入门指南
查看>>
十二周二次课
查看>>
java使用httpclient时,获取HttpPost对象中的入参
查看>>
宏定义中的特殊参数(#、##、...和__VA_ARGS__)
查看>>
linux反向代理
查看>>
我的友情链接
查看>>
第一次写 java 请求数据库连接
查看>>
Packaging ActiveX Controls
查看>>
Java 可变对象和不可变对象
查看>>