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.
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\n",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\n",dp[M]); for(i=M;i>=1;i--) if(dp_num[i]==K) break; if(i>=1) printf("%d\n",dp[i]); else printf("Impossible\n"); } return 0; }
 
                     
                    
                 
                    
                 
                
            
         
         浙公网安备 33010602011771号
浙公网安备 33010602011771号