hdu 3033 I love sneakers!


I love sneakers!

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2884    Accepted Submission(s): 1180 

Problem Description
After 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.
 

Input
Input 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.
 

Output
For 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 3 1 4 6 2 5 7 3 4 99 1 55 77 2 44 66
 

Sample Output
255
 

Source
 

Recommend
gaojie

// dp 我将其按 鞋子牌子分类 ,然求 在至少有 i 种 牌子鞋子时,花 m 元钱最大可以达到的 价值
#include <iostream>
#include <algorithm>
#include <queue>
#include <math.h>
#include <stdio.h>
#include <string.h>
using namespace std;
int rb[11][110],rc[11][110];
int dp[10010],dp_num[10010],dpy[10010];

int main()
{
    int N,M,K;
    while(scanf("%d %d %d",&N,&M,&K)!=EOF){
        int i,j,k;
        int x,y,z;
        for(i=1;i<=10;i++) rb[i][100]=0;
        for(i=1;i<=N;i++)
        {

            scanf("%d %d %d",&x,&y,&z);
            rb[x][++rb[x][100]]=y;
            rc[x][rb[x][100]]=z;

        }
        memset(dp,0,sizeof(dp));
        memset(dp_num,0,sizeof(dp_num));
        memset(dpy,0,sizeof(dpy));
        for(i=1;i<=K;i++){

            int num=rb[i][100];
            for(j=1;j<=num;j++){
                for(k=M;k>=rb[i][j];k--){
                       if(dpy[k]<dp[k-rb[i][j]]+rc[i][j]&&dp_num[k-rb[i][j]]>=i-1)
                         {
                             dpy[k]=dp[k-rb[i][j]]+rc[i][j];
                                  dp_num[k]=i;
                         }
                         else  if(dp_num[k]==i-1&&dp_num[k-rb[i][j]]==i-1){
                            dpy[k]=dp[k-rb[i][j]]+rc[i][j];
                               dp_num[k]=i;
                         }

                }
              //  printf("%d
",dpy[M]);
                for(k=1;k<=M;k++)//这里需要同种鞋子确保更新被用到了
                    if(dpy[k]>dp[k])
                     dp[k]=dpy[k];
            }
             for(k=1;k<=M;k++)//这里确保 在有用了i种牌子时记录了结果
                 dp[k]=dpy[k];


        }
       // printf("%d
",dp[M]);
        for(i=M;i>=1;i--)
            if(dp_num[i]==K)
              break;
        if(i>=1)
           printf("%d
",dp[i]);
        else
           printf("Impossible
");
    }


    return 0;
}

原文地址:https://www.cnblogs.com/372465774y/p/3179292.html