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

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

Charm Bracelet

Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 38909   Accepted: 16862

Description

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

Source

题目链接:http://poj.org/problem?id=3624
分析:01背包裸题,顺带敲了一遍,做个复习吧,怕忘了!详解请参看我的博客http://www.cnblogs.com/ECJTUACM-873284962/p/6815610.html,里面有对01背包的完全介绍以及用法!
下面给出AC代码:
1 #include 
2 #include
3 #include
4 using namespace std; 5 int w[35000],d[35000],dp[35000]; 6 int main() 7 { 8 int n,m; 9 while(scanf("%d%d",&n,&m)!=EOF)10 {11 for(int i=1;i<=n;i++)12 scanf("%d%d",&w[i],&d[i]);13 for(int i=1;i<=n;i++)14 {15 for(int j=m;j>=w[i];j--)16 {17 dp[j]=max(dp[j],dp[j-w[i]]+d[i]);18 }19 }20 printf("%d\n",dp[m]);21 }22 return 0;23 }

 

转载于:https://www.cnblogs.com/ECJTUACM-873284962/p/6828362.html

你可能感兴趣的文章
实现java导出文件弹出下载框让用户选择路径
查看>>
刨根问底--技术--jsoup登陆网站
查看>>
awk学习笔记
查看>>
OSChina 五一劳动节乱弹 ——女孩子晚上不要出门,发生了这样的事情
查看>>
OSChina 周四乱弹 ——心有鱼,而力不足
查看>>
OSChina 周六乱弹 —— 你一口我一口多咬一口是小狗
查看>>
[译]是时候使用Javascript严格模式了
查看>>
Spring--通过注解来配置bean
查看>>
Spring Bean之间的关系
查看>>
pandas 十分钟入门
查看>>
nginx rewrite
查看>>
前端安全系列(一):如何防止XSS攻击?
查看>>
用Mysql5.6出现时间问题Incorrect datetime value: '' for column 'createtime'
查看>>
Pureftpd的权限控制
查看>>
微信授权登录
查看>>
IK分词器安装
查看>>
查看Linux并发连接数
查看>>
你是谁不重要,关键是你跟谁!
查看>>
CSS中规则@media的用法
查看>>
pychecker:分析你的python代码
查看>>