标签:style blog io color ar os sp for 数据
1 1000 5 800 2 400 5 300 5 400 3 200 2
3900
/*还是01背包问题,做的时候只需要将物品价钱和重要度相乘,再套模板即可*/ #include<stdio.h> #include<string.h> #include<algorithm> using namespace std; int main() { int test,i,j,n,m; int a[28],b[28],dp[30002]; scanf("%d",&test); while(test--) { scanf("%d %d",&n,&m); memset(dp,0,sizeof(dp)); for(i=1;i<=m;i++) { scanf("%d %d",&a[i],&b[i]); } for(i=1;i<=m;i++) { for(j=n;j>=a[i];j--)//注意这个循环中j>=a[i]; dp[j]=max(dp[j],dp[j-a[i]]+a[i]*b[i]); } printf("%d\n",dp[n]); } return 0; }
标签:style blog io color ar os sp for 数据
原文地址:http://blog.csdn.net/hdd871532887/article/details/40960443