hdu3033 I love sneakers!分組背包

來源:互聯網
上載者:User

標籤:des   style   class   blog   code   http   

轉載請註明出處:http://blog.csdn.net/u012860063

題目連結:http://acm.hdu.edu.cn/showproblem.php?pid=3033

Problem DescriptionAfter months of hard working, Iserlohn finally wins awesome amount of scholarship. As a great zealot of sneakers, he decides to spend all his money on them in a sneaker store.

There are several brands of sneakers that Iserlohn wants to collect, such as Air Jordan and Nike Pro. And each brand has released various products. For the reason that Iserlohn is definitely a sneaker-mania, he desires to buy at least one product for each brand.
Although the fixed price of each product has been labeled, Iserlohn sets values for each of them based on his own tendency. With handsome but limited money, he wants to maximize the total value of the shoes he is going to buy. Obviously, as a collector, he won’t buy the same product twice.
Now, Iserlohn needs you to help him find the best solution of his problem, which means to maximize the total value of the products he can buy. 
InputInput contains multiple test cases. Each test case begins with three integers 1<=N<=100 representing the total number of products, 1 <= M<= 10000 the money Iserlohn gets, and 1<=K<=10 representing the sneaker brands. The following N lines each represents a product with three positive integers 1<=a<=k, b and c, 0<=b,c<100000, meaning the brand’s number it belongs, the labeled price, and the value of this product. Process to End Of File. 
OutputFor each test case, print an integer which is the maximum total value of the sneakers that Iserlohn purchases. Print "Impossible" if Iserlohn‘s demands can’t be satisfied. 
Sample Input
5 10000 31 4 62 5 73 4 991 55 772 44 66
 
Sample Output
255

分組背包

代碼如下:

#include <cstdio>#include <cstring>int max(int a,int b){    if(a > b)        return a;    return b;}struct M{    int m,v;}m[17][147];int main(){    int i,j,k,KK,N,MM;    int num[147],dp[11][10047];    int vv,mm;    while(~scanf("%d%d%d",&N,&MM,&KK))    {        memset(num,0,sizeof(num));        memset(dp,-1,sizeof(dp));        for(i = 0 ; i < N ; i++)        {            scanf("%d%d%d",&k,&mm,&vv);            m[k][num[k]].m = mm;            m[k][num[k]].v = vv;            num[k]++;        }        for( i = 0 ; i <= MM ;i++)        {            dp[0][i] = 0;        }        for(k = 1 ; k <= KK ; k++)        {            for( i = 0 ; i < num[k] ; i++)            {                for(j  = MM ; j >= m[k][i].m ; j--)                {                    if(dp[k][j-m[k][i].m] != -1)                    {                        dp[k][j] = max(dp[k][j],dp[k][j-m[k][i].m]+m[k][i].v);                    }                    if(dp[k-1][j-m[k][i].m] != -1)                    {                        dp[k][j] = max(dp[k][j],dp[k-1][j-m[k][i].m]+m[k][i].v);                    }                }            }        }        if(dp[KK][MM] == -1)            printf("Impossible\n");        else            printf("%d\n",dp[KK][MM]);    }    return 0;}


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.