博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Charm Bracelet(01背包)
阅读量:5050 次
发布时间:2019-06-12

本文共 1325 字,大约阅读时间需要 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 题目大意: 给定n个物品,m的最大承重,求在承重范围之内的最大的D的和。 01背包模板
#include 
#include
using namespace std;int w[3405],d[3405],dp[12885];int n,m;int main(){ cin>>n>>m; for(int i=1;i<=n;i++) cin>>w[i]>>d[i]; for(int i=1;i<=n;i++) for(int j=m;j>=w[i];j--) dp[j]=max(dp[j],dp[j-w[i]]+d[i]); cout<
<<'\n'; return 0;}
 

 

 

转载于:https://www.cnblogs.com/zdragon1104/p/9189046.html

你可能感兴趣的文章
iOS:UIWebView scrollView 的分页滑动问题
查看>>
【Movie】绿皮书
查看>>
python发送邮件 示例
查看>>
SpringMVC与Struts2的区别
查看>>
课后作业-阅读任务-阅读提问-3
查看>>
Latches and Tuning:Buffer Cache
查看>>
c++:空构造空析构的益处之一
查看>>
推荐系统 BPR 算法求解过程
查看>>
2017多校联合训练补题
查看>>
通过函数完成对结构体变量的输入输出
查看>>
Linux下GCC生成和使用静态库和动态库【转】
查看>>
css中的zoom
查看>>
JS数组操作
查看>>
python学习笔记
查看>>
Magento 2数据库EAV模型结构
查看>>
big data vs HPC
查看>>
sql语句中的left join,right join,inner join的区别
查看>>
java中抽象类与接口的区别
查看>>
51单片机学习笔记(郭天祥版)(6)——键盘的作业题、AD、DA、DS18B20(这里之后看清翔的补一下好了)...
查看>>
数学问题-高精度运算
查看>>