【hdu 2660】Accepted Necklace 二维费用01背包

来源:互联网 发布:象神佛牌禁忌知多少 编辑:程序博客网 时间:2024/05/21 08:58

Accepted Necklace

Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 32768/32768K (Java/Other)
Total Submission(s) : 12   Accepted Submission(s) : 8
Problem Description
I have N precious stones, and plan to use K of them to make a necklace for my mother, but she won't accept a necklace which is too heavy. Given the value and the weight of each precious stone, please help me find out the most valuable necklace my mother will accept.
 

Input
The first line of input is the number of cases.
For each case, the first line contains two integers N (N <= 20), the total number of stones, and K (K <= N), the exact number of stones to make a necklace.
Then N lines follow, each containing two integers: a (a<=1000), representing the value of each precious stone, and b (b<=1000), its weight.
The last line of each case contains an integer W, the maximum weight my mother will accept, W <= 1000.
 

Output
For each case, output the highest possible value of the necklace.
 

Sample Input
1 2 1 1 1 1 1 3
 

Sample Output
1
 

#include<cstdio>#include<cstring>#define max(a,b) (a)>(b)?(a):(b)int main(){    int T,N,K,W,i,j,k,val[25],wei[25],dp[1005][25];    scanf("%d",&T);    while(T--)    {              scanf("%d%d",&N,&K);              for(i=0;i<N;i++)                  scanf("%d%d",&val[i],&wei[i]);              scanf("%d",&W);              memset(dp,0,sizeof(dp));              for(i=0;i<N;i++)                for(j=W;j>=wei[i];j--)                  for(k=1;k<=K;k++)                     dp[j][k]=max(dp[j-wei[i]][k-1]+val[i],dp[j][k]);              printf("%d\n",dp[W][K]);    }} 


原创粉丝点击