Loading [MathJax]/jax/output/CommonHTML/config.js
前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >专栏 >HDU 2639 Bone Collector II(01背包变形【第K大最优解】)

HDU 2639 Bone Collector II(01背包变形【第K大最优解】)

作者头像
Angel_Kitty
发布于 2018-04-08 09:13:47
发布于 2018-04-08 09:13:47
84600
代码可运行
举报
运行总次数:0
代码可运行

Bone Collector II

Time Limit: 5000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 4739    Accepted Submission(s): 2470

Problem Description

The title of this problem is familiar,isn't it?yeah,if you had took part in the "Rookie Cup" competition,you must have seem this title.If you haven't seen it before,it doesn't matter,I will give you a link: Here is the link:http://acm.hdu.edu.cn/showproblem.php?pid=2602 Today we are not desiring the maximum value of bones,but the K-th maximum value of the bones.NOTICE that,we considerate two ways that get the same value of bones are the same.That means,it will be a strictly decreasing sequence from the 1st maximum , 2nd maximum .. to the K-th maximum. If the total number of different values is less than K,just ouput 0.

Input

The first line contain a integer T , the number of cases. Followed by T cases , each case three lines , the first line contain two integer N , V, K(N <= 100 , V <= 1000 , K <= 30)representing the number of bones and the volume of his bag and the K we need. And the second line contain N integers representing the value of each bone. The third line contain N integers representing the volume of each bone.

Output

One integer per line representing the K-th maximum of the total value (this number will be less than 231).

Sample Input

3

5 10 2

1 2 3 4 5

5 4 3 2 1

5 10 12

1 2 3 4 5

5 4 3 2 1

5 10 16

1 2 3 4 5

5 4 3 2 1

Sample Output

12

2

0

Author

teddy

Source

百万秦关终属楚

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2639

题目大意:

       见之前的收集骨头的博客,题意类似,给定背包容量,骨头的个数和每个骨头的价值,这次不是求在背包容量允许的情况下,最多装的价值,而是求在背包容量内,可以装的第k大价值,如果没有第k个最大值,那么输出0

      输入包括多组样例,第一行输入一个T,样例的个数,接下来每个样例都有三行,第一行包括三个整数,N,V,K,分别代表骨头的个数,背包的容量,我们需要输出的第K个最大值,第二行包括N个数,分别代表骨头的数量和接下来一行有N个数,分别表示每种骨头的价值。

      输出第K个最大价值,每个样例输出一行

思路:简单的01背包基础上做,要求的是第K个最大值,那么不用dp[j]=max(dp[j],dp[j-w[i]]+v[i])的状态转移方程,而是将两个值都记录下来,用for循环走一遍,记录下,容量为1到M的各个最大价值,dp[i][j]表示当背包容量为i时的第j个最大价值,最后只需要输出dp[m][k]即可!

下面给出AC代码:

代码语言:javascript
代码运行次数:0
运行
AI代码解释
复制
 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 int w[110];
 4 int v[110];
 5 int dp[1010][35];
 6 int d1[1010];
 7 int d2[1010];
 8 int main()
 9 {
10     int t,n,m,k,x,y,z,p;
11     scanf("%d",&t);
12     while(t--)
13     {
14         memset(w,0,sizeof(w));
15         memset(v,0,sizeof(v));
16         memset(dp,0,sizeof(dp));
17         memset(d1,0,sizeof(d1));
18         memset(d2,0,sizeof(d2));
19         scanf("%d%d%d",&n,&m,&k);
20         for(int i=1;i<=n;i++)
21         scanf("%d",&v[i]);
22         for(int i=1;i<=n;i++)
23         scanf("%d",&w[i]);
24         for(int i=1;i<=n;i++)//01背包变形
25         {
26             for(int j=m;j>=w[i];j--)
27             {
28                 for(p=1;p<=k;p++)
29                 {
30                     d1[p]=dp[j][p];
31                     d2[p]=dp[j-w[i]][p]+v[i];
32                 }
33                 d1[p]=d2[p]=-1;
34                 x=y=z=1;
35                 while((d1[x]!=-1||d2[y]!=-1)&&z<=k)
36                 {
37                     if(d1[x]>d2[y])
38                     {
39                         dp[j][z]=d1[x];
40                         x++;
41                     }
42                     else
43                     {
44                         dp[j][z]=d2[y];
45                         y++;
46                     }
47                     if(dp[j][z-1]!=dp[j][z])
48                     z++;
49                 }
50             }
51         }
52         printf("%d\n",dp[m][k]);
53     }
54     return 0;
55 }
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2017-05-07 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
暂无评论
推荐阅读
编辑精选文章
换一批
HDU 2602 Bone Collector(01背包裸题)
Bone Collector Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 60469    Accepted Submission(s): 25209 Problem Description Many years ago , in Teddy’s hometown there was a man who was called “Bone Co
Angel_Kitty
2018/04/08
8720
HDU 2602 Bone Collector(01背包裸题)
HDU2602 Bone Collector 【01背包】[通俗易懂]
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
全栈程序员站长
2022/07/07
2410
HDU2602 Bone Collector 【01背包】[通俗易懂]
HDUOJ--Bone Collector
Bone Collector Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 21463    Accepted Submission(s): 8633 Problem Description Many years ago , in Teddy’s hometown there was a man who was called “Bone C
Gxjun
2018/03/21
6740
HDUOJ--Bone Collector
HDU 2602 Bone Collector(01背包模板题)
       一道01背包的裸题,不带拐弯的裸题...看代码吧 AC代码: #include <iostream> #include <cstring> using namespace std; const int MAXN = 1005; //数组不要开太小,不然会WA int dp[MAXN]; int val[MAXN]; //存价值 int v[MAXN]; //存体积 int T,n,m; int main() { scanf("%d"
Ch_Zaqdt
2019/01/10
3960
Bone Collector HDU - 2602【 01 背包 】
&:自己的动态规划好差的,算法也跟不上,真是处处碰壁。于是找点简单的题看看,散散心。
Lokinli
2023/03/09
2210
hdoj 2602 Bone Collector 【01背包】
意甲冠军:给出的数量和袋骨骼的数,然后给每块骨骼的价格值和音量。寻求袋最多可容纳骨骼价格值
全栈程序员站长
2022/07/06
2030
HDU 2546 饭卡(01背包裸题)
饭卡 Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 28562    Accepted Submission(s): 9876 Problem Description 电子科大本部食堂的饭卡有一种很诡异的设计,即在购买之前判断余额。如果购买一个商品之前,卡上的剩余金额大于或等于5元,就一定可以购买成功(即使购买后卡上余额为负),否则无法购买(即
Angel_Kitty
2018/04/08
6140
01背包精讲
给定一个物品集合s={1,2,…..,n},物品i具有重量wi和价值vi。背包能承受能承受的最大载重量不超过W。背包问题就是找到一个物品子集s‘属于s,使得maxEwi<=W。所谓01背包就是物品要么整个地选取,要么不取。 首先我们先要肯定一件事,假设子问题(i,w)的最优装载中含有物品i,则其中的子问题(i-1,w-wi)的装载方案也一定是最优的。 证明:(反证法)假设子问题(i-1,w-wi)的装载方案p不是最优的,则有一个更优的装载方案p’,将p’替换p然后在加上物品i将会比原来的最优装载价值最大,与
用户1624346
2018/04/17
8020
背包问题详解(01背包,完全背包,多重背包,分组背包)
求解将哪些物品装入背包,可使这些物品的总体积不超过背包容量,且总价值最大。 输出最大价值。
走在努力路上的自己
2024/04/10
9230
背包问题详解(01背包,完全背包,多重背包,分组背包)
HDU 1114 Piggy-Bank(完全背包+恰好装满)
https://blog.csdn.net/Charles_Zaqdt/article/details/79305635
Ch_Zaqdt
2019/01/10
8100
01背包 与 搞笑的题目背景(协会传说)的爱恨情仇
本题背景有意思,大家当乐子看,目前没有找到题目原题,也没有写过完全是01背包模板的题目,该篇文章大家注意其01背包一维写法的模板就好,注意各个关键点
用户11039529
2024/03/25
1100
POJ 2603 HDU 1963 Investment(完全背包)
        这有一篇完全背包的详解,也加了判断是否恰好装满的状态传送门(Piggy-Bank)
Ch_Zaqdt
2019/01/10
5790
01背包问题
前言:背包问题是dp(动态规划)经典入门题目集合,里面的01背包问题也是一切的起点,作者当初学习此算法的时候,把各种教学视频看了十几遍,加上老师的讲解,还有很多博客,最后还是一知半解,但是随着时间积累,慢慢的在许久之后明白了这个算法,这也是我的一个学习算法的建议,在入门一个算法的时候,不必短时间内理解它的含义,记住模板,然后在未来的某个时刻,会理解它的。
GeekLiHua
2025/01/21
830
poj 1976 A Mini Locomotive(01背包)
A train has a locomotive that pulls the train with its many passenger coaches. If the locomotive breaks down, there is no way to pull the train. Therefore, the office of railroads decided to distribute three mini locomotives to each station. A mini locomotive can pull only a few passenger coaches. If a locomotive breaks down, three mini locomotives cannot pull all passenger coaches. So, the office of railroads made a decision as follows:
xindoo
2021/01/22
3620
hdoj 3466 Proud Merchants(01背包)
这并不是一题裸的01背包,它在简单到01背包上还加了一个限制条件Q,如果没有Q,这完全是一题裸01背包。
xindoo
2021/01/22
2640
01Backpack Practice
01背包,涉及贪心,先买最贵的菜,然后就转化为容量为m-5,物品数量n-1的,进行01背包;
AngelNH
2020/04/16
3520
Bone Collector——HDOJ杭电2602(纯01背包问题!!!!!!具体解释!)
大家好,又见面了,我是全栈君。 Problem Description Many years ago , in Teddy’s hometown there was a man who was called “Bone Collector”. This man like to collect varies of bones , such as dog’s , cow’s , also he went to the grave … The bone collector had a b
全栈程序员站长
2022/07/10
3070
Bone Collector——HDOJ杭电2602(纯01背包问题!!!!!!具体解释!)
动态规划-背包问题(01背包、完全背包、多重背包)
背包问题:有多个重量不同、价值不同的物品,以及一个容量有限的背包,选择一些物品装入背包,求最大总价值。 背包问题无法用贪心求最优解,是典型的动态规划问题。背包问题还可以分成3种:① 0-1背包、② 完全背包、③ 多重背包。
唔仄lo咚锵
2020/09/15
13.4K0
动态规划 4、基础背包问题总结(从01开始)「建议收藏」
简述:n种物品,每种一个,选或不选随你,背包一定有容量,求不超过容量的情况下,价值最大。
全栈程序员站长
2022/09/06
8990
动态规划 4、基础背包问题总结(从01开始)「建议收藏」
HDU 2955 Robberies(01背包+思维)
       这是一道关于小数的01背包问题,题意代码注释中有,如果按着题的思路来写,会发现那个概率是小数,在转移方程里没法实现,所以我们需要换个方向思考了。我们可以按成功逃跑的概率来算,每个w数组里存成功逃跑的概率,然后让总价值作为背包容量,然后在dp中用价值去存逃跑的概率,最后从价值最大(背包容量)到小遍历(因为价值越大逃跑成功率越低),直到第一次出现逃跑成功的概率小于等于题目给的逃跑成功概率,输出此使的价值即可。我发现我解释的也不是很清楚,所以结合代码注释看一下吧,感觉不是很好理解。
Ch_Zaqdt
2019/01/10
4690
相关推荐
HDU 2602 Bone Collector(01背包裸题)
更多 >
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
查看详情【社区公告】 技术创作特训营有奖征文
本文部分代码块支持一键运行,欢迎体验
本文部分代码块支持一键运行,欢迎体验