hdu 3496 Watch The Movie (二维背包)

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:  2639 2415 3535 3449 3732 
 
 1 //93MS    1064K    803 B    C++    
 2 /*
 3     
 4     题意:
 5         给出n部电影,最多选m部,和最多看L分钟,接下是n部电影时长和可获得的价值, 
 6     求看可获得的最大价值
 7     
 8     背包:
 9         典型的二维背包,加个小优化即可 
10      
11 */
12 #include<stdio.h>
13 #include<string.h>
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
",dp[m][l]);
41     }
42     return 0;
43 }
原文地址:https://www.cnblogs.com/GO-NO-1/p/3424513.html