Bone CollectorTime
limit:2000/1000 MS (java/others) Memory limit:32768/32768 K (java/others)
Total submission (s): 40289 Accepted Submission (s): 16736
Problem Descriptionmany years ago, in Teddy ' s hometown there is a man who was called "Bone Collector". Collect varies of bones, such as dog ' s, cow ' s, also he went to the grave ...
The bone collector had a big bag with a volume of V, and along he trip of collecting there is a lot of bones, obviously , different bone have different value and different volume, now given the each bone's value along his trips, can you CALCU Late out the maximum of the total value the bone collector can get?
Inputthe first line contain a integer T, the number of cases.
Followed by T cases, each case three lines, the first line contain both integer n, V, (N <=, v <=) repr Esenting the number of bones and the volume of his bag. And the second line contain N integers representing the value of each bone. The third line contain N integers representing the volume for each bone.
Outputone integer per line representing the maximum of the total value (this number would be is less than 231).
Sample Input
15 101 2 3 4 55 4 3 2 1
Sample Output
14 Code:#include <stdio.h> #include <string.h> #include <algorithm>using namespace Std;int sum[1010];int Value[1010];int Volume[1010];int Main () {int t;int n,v;int i,j;scanf ("%d", &t), while (t--) {scanf ("%d%d", &n, &V); for (i=0;i<n;i++) {scanf ("%d", &value[i]);} for (i=0;i<n;i++) {scanf ("%d", &volume[i]);} memset (sum,0,sizeof (sum)); for (i=0;i<n;i++) {for (j=v;j>=volume[i];j--) {Sum[j]=max (sum[j],sum[j-volume[i]]+ Value[i]);}} printf ("%d\n", Sum[v]);}
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
Hdoj 2602 Bone Collector "01 Backpack"