博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 3496 Watch The Movie (二维背包)
阅读量:5998 次
发布时间:2019-06-20

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

Watch The Movie

Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65535/65535 K (Java/Others)

Total Submission(s): 4613    Accepted Submission(s): 1456


Problem Description
New semester is coming, and DuoDuo has to go to school tomorrow. She decides to have fun tonight and will be very busy after tonight. She like watch cartoon very much. So she wants her uncle to buy some movies and watch with her tonight. Her grandfather gave them L minutes to watch the cartoon. After that they have to go to sleep.
DuoDuo list N piece of movies from 1 to N. All of them are her favorite, and she wants her uncle buy for her. She give a value Vi (Vi > 0) of the N piece of movies. The higher value a movie gets shows that DuoDuo likes it more. Each movie has a time Ti to play over. If a movie DuoDuo choice to watch she won’t stop until it goes to end.
But there is a strange problem, the shop just sell M piece of movies (not less or more then), It is difficult for her uncle to make the decision. How to select M piece of movies from N piece of DVDs that DuoDuo want to get the highest value and the time they cost not more then L.
How clever you are! Please help DuoDuo’s uncle.
 

 

Input
The first line of the input file contains a single integer t (1 ≤ t ≤ 10), the number of test cases, followed by input data for each test case:
The first line is: N(N <= 100),M(M<=N),L(L <= 1000)
N: the number of DVD that DuoDuo want buy.
 
M: the number of DVD that the shop can sale.
L: the longest time that her grandfather allowed to watch.
The second line to N+1 line, each line contain two numbers. The first number is the time of the ith DVD, and the second number is the value of ith DVD that DuoDuo rated.
 

 

Output
Contain one number. (It is less then 2^31.)
The total value that DuoDuo can get tonight.
If DuoDuo can’t watch all of the movies that her uncle had bought for her, please output 0.
 

 

Sample Input
1 3 2 10 11 100 1 2 9 1
 

 

Sample Output
3
 

 

Source
 

 

Recommend
zhouzeyong   |   We have carefully selected several similar problems for you:            
 
1 //93MS    1064K    803 B    C++     2 /* 3      4     题意: 5         给出n部电影,最多选m部,和最多看L分钟,接下是n部电影时长和可获得的价值,  6     求看可获得的最大价值 7      8     背包: 9         典型的二维背包,加个小优化即可 10      11 */12 #include
13 #include
14 struct node{15 __int64 c,w;16 }p[105];17 __int64 dp[105][1005];18 __int64 Max(__int64 a,__int64 b)19 {20 return a>b?a:b;21 }22 int main(void)23 {24 __int64 t,n,m,l;25 scanf("%I64d",&t);26 while(t--)27 {28 memset(dp,-1,sizeof(dp));29 scanf("%I64d%I64d%I64d",&n,&m,&l);30 for(int i=1;i<=n;i++)31 scanf("%I64d%I64d",&p[i].c,&p[i].w);32 for(int i=0;i<=l;i++)dp[0][i]=0;33 for(int i=1;i<=n;i++){34 for(int j=m;j>=1;j--)35 for(int k=l;k>=p[i].c;k--)36 if(dp[j-1][k-p[i].c]!=-1)37 dp[j][k]=Max(dp[j][k],dp[j-1][k-p[i].c]+p[i].w);38 }39 if(dp[m][l]==-1) puts("0");40 else printf("%I64d\n",dp[m][l]);41 }42 return 0;43 }

 

转载于:https://www.cnblogs.com/GO-NO-1/p/3424513.html

你可能感兴趣的文章
专题实验 Toad 用户的创建与管理( 包括 role 等 )
查看>>
markdown 语法和工具
查看>>
当调用List Remove 失效时 [C#] .
查看>>
Linux下修改Oracle监听地址
查看>>
ie11的仿真模式
查看>>
hdu - 3049 - Data Processing(乘法逆元)
查看>>
Java程序员面试失败的5大原因
查看>>
Open vSwitch 工作原理
查看>>
(算法)两个单词的最短距离
查看>>
谈谈Ext JS的组件——布局的用法续二
查看>>
网络爬虫个人博客
查看>>
json串转对象
查看>>
HTTP代理与SPDY协议(转)
查看>>
线程初步了解 - <第一篇>
查看>>
imx6 电容屏参数更改
查看>>
Unity实现刺客信条灯光的思路探究
查看>>
android 调用系统的音乐和视频播放器
查看>>
php调用webservice的几种方法
查看>>
Java并发编程总结4——ConcurrentHashMap在jdk1.8中的改进(转)
查看>>
人民日报曝光虚假大学 百度安全推出验证真伪小工具
查看>>