hdu2660

来源:互联网 发布:淘宝设置不包邮地区 编辑:程序博客网 时间:2024/06/05 06:59

Accepted Necklace

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


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

AC代码:

#include<iostream>#include<string.h>#include<stdio.h>using namespace std;const int mn=25;const int mw=1005;int ans[mn][mw],v[mn],w[mn];int main(){        int t;        scanf("%d",&t);        while(t--)        {                int n,k;                scanf("%d%d",&n,&k);                for(int i=0;i<n;i++)                        scanf("%d%d",&v[i],&w[i]);                int m;                scanf("%d",&m);                memset(ans,-1,sizeof(ans));                for(int j=0;j<=mw;j++)                        ans[0][j]=0;                for(int i=0;i<n;i++)                {                        for(int j=m;j>=w[i];j--)                        for(int l=k;l>0;l--)                        if(ans[l-1][j-w[i]]+v[i]>ans[l][j])                                ans[l][j]=ans[l-1][j-w[i]]+v[i];                }                cout<<ans[k][m]<<endl;        }        return 0;}

原创粉丝点击