hdu2602 01 Backpack Bone Collector

Source: Internet
Author: User

Time limit:2000/1000 MS (java/others) Memory limit:32768/32768 K (java/others) Total Submission (s): 40316 Accepted Submission (s): 16748


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
#include <stdio.h> #include <string.h> #include <algorithm>using namespace std;struct stu {int Val;int COS;} Boy[10010];//stu;//int bag[10010];int nexty[10010];//If you change all nexty to next commit, a compilation error occurs. int main () {int n;int a,b;scanf ("%d", &n), while (n--) {scanf ("%d%d", &a,&b); Memset (boy,0,sizeof (Boy));// memset (bag,0,sizeof (bag)), memset (nexty,0,sizeof (nexty)), for (int i=0;i<a;i++)   scanf ("%d", &boy[i].val) , for (int j=0;j<a;j++)   scanf ("%d", &boy[j].cos), and for (int i=0;i<a;i++) {for (int j=b;j>=boy[i].cos;j-- )//bag[j]=max (Bag[j],bag[j-boy[i].cos]+boy[i].val); Nexty[j]=max (nexty[j],nexty[j-boy[i].cos]+boy[i].val);} printf ("%d\n", Bag[b]);p rintf ("%d\n", Nexty[b]);} return 0;}


Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

hdu2602 01 Backpack Bone Collector

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.