Hdu2126 Buy the souvenirs

Source: Internet
Author: User

Hdu2126 Buy the souvenirs
Problem Description When the winter holiday comes, a lot of people will have a trip. generally, there are a lot of souvenirs to parse, and sometimes the travelers will buy some ones with pleasure. not only can they give the souvenirs to their friends and families as gifts, but also can the souvenirs leave them good recollections. all in all, the prices of souvenirs are not very dear, and the souvenirs are also very lovable and interesting. but the money the people have is under the control. they can't buy a lot, but only a few. so after they admire all the souvenirs, they decide to buy some ones, and they have combinations to select, but there are no two ones with the same kind in any combination. now there is a blank written by the names and prices of the souvenirs, as a top coder all around the world, you shoshould calculate how many selections you have, and any selection owns the most kinds of different souvenirs. for instance:



And you have only 7 RMB, this time you can select any combination with 3 kinds of souvenirs at most, so the selections of 3 kinds of souvenirs are ABC (6 ), ABD (7 ). but if you have 8 RMB, the selections with the most kinds of souvenirs are ABC (6), ABD (7), ACD (8), and if you have 10 RMB, there is only one selection with the most kinds of souvenirs to you: ABCD (10 ).

Input For the first line, there is a T means the number cases, then T cases follow.
In each case, in the first line there are two integer n and m, n is the number of the souvenirs and m is the money you have. the second line contains n integers; each integer describes a kind of souvenir.
All the numbers and results are in the range of 32-signed integer, and 0 <= m <= 500, 0 Output If you can buy some souvenirs, you shoshould print the result with the same formation as "You have S selection (s) to buy with K kind (s) of souvenirs ", where the K means the most kinds of souvenirs you can buy, and S means the numbers of the combinations you can buy with the K kinds of souvenirs combination. but sometimes you can buy nothing, so you must print the result "Sorry, you can't buy anything."
Sample Input
24 71 2 3 44 01 2 3 4

Sample Output
You have 2 selection(s) to buy with 3 kind(s) of souvenirs.Sorry, you can't buy anything.

 

You can use a backpack, give you n backpacks and their weights, and then give your backpack a total weight of m, so that you can find the maximum number of items, there are several solutions. Previously, the state transition equation was wrong many times, and then changed to the correct one.

 

#include
  
   #include
   
    #include
    
     #include
     
      #include
      
       #include
       #include
        
         #include
         
          #include
          
           #includeusing namespace std;#define inf 88888888int w[50],dp[600][2];int main(){int n,m,i,j,T,num,num1,fas,minx,flag;scanf(%d,&T);while(T--){minx=inf;scanf(%d%d,&n,&m);for(i=1;i<=n;i++){scanf(%d,&w[i]);if(w[i]
           
            =w[i];j--){if(dp[j-w[i]][0]+1>dp[j][0]){dp[j][0]=dp[j-w[i]][0]+1;dp[j][1]=dp[j-w[i]][1];}else if(dp[j-w[i]][0]+1==dp[j][0]){dp[j][1]+=dp[j-w[i]][1];}}}printf(You have %d selection(s) to buy with %d kind(s) of souvenirs.,dp[m][1],dp[m][0]);}return 0; }
           
          
         
        
      
     
    
   
  


 

 

Related Article

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.