hdu 3449 Consumer 依赖背包~~
发布时间:2020-12-13 22:30:11 所属栏目:百科 来源:网络整理
导读:Consumer Time Limit: 4000/2000 MS (Java/Others)Memory Limit: 32768/65536 K (Java/Others) Total Submission(s): 1404Accepted Submission(s): 733 Problem Description FJ is going to do some shopping,and before that,he needs some boxes to carry
ConsumerTime Limit: 4000/2000 MS (Java/Others)Memory Limit: 32768/65536 K (Java/Others)Total Submission(s): 1404Accepted Submission(s): 733
Problem Description
FJ is going to do some shopping,and before that,he needs some boxes to carry the different kinds of stuff he is going to buy. Each box is assigned to carry some specific kinds of stuff (that is to say,if he is going to buy one of these stuff,he has to buy the box beforehand). Each kind of stuff has its own value. Now FJ only has an amount of W dollars for shopping,he intends to get the highest value with the money.
Input
The first line will contain two integers,n (the number of boxes 1 <= n <= 50),w (the amount of money FJ has,1 <= w <= 100000) Then n lines follow. Each line contains the following number pi (the price of the ith box 1<=pi<=1000),mi (1<=mi<=10 the number goods ith box can carry),and mi pairs of numbers,the price cj (1<=cj<=100),the value vj(1<=vj<=1000000)
Output
For each test case,output the maximum value FJ can get
Sample Input
Sample Output
上一个博客吧:
http://www.cnblogs.com/wuyiqi/archive/2011/11/26/2264283.html
代码:
#include <stdio.h> #include <string.h> #define MAX 100100 int dp[55][MAX] ; int max(int a,int b) { return a>b?a:b ; } int main() { int n,sum ; while(~scanf("%d%d",&n,&sum)) { memset(dp,sizeof(dp)) ; for(int i = 1 ; i <= n ; ++i) { int p,t; scanf("%d%d",&p,&t); for(int j = 0 ; j <= p ; ++j) { dp[i][j] = -1 ; } for(int j = p ; j <= sum ; ++j) { dp[i][j] = dp[i][j-p] ; } for(int j = 0 ; j < t ; ++j) { int c,v ; scanf("%d%d",&c,&v) ; for(int k = sum ; k >= v ; --k) { if(dp[i][k] != -1) { dp[i][k] = max(dp[i][k],dp[i][k-c]+v) ; } } } for(int j = 0 ; j < sum ;++j) { dp[i][j] = max(dp[i-1][j],dp[i][j]) ; } } printf("%dn",dp[n][sum]) ; } return 0 ; } 与君共勉 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |