标签:des style http color os io strong ar for
ACboy needs your helpCrawling in process... Crawling failed Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u
Description
Input
Output
Sample Input
2 2 1 2 1 3 2 2 2 1 2 1 2 3 3 2 1 3 2 1 0 0
Sample Output
3 4 6
#include <stdio.h> #include <string.h> #include <stdlib.h> #include <algorithm> using namespace std; int main() { int n,m,i,j,k; int f[110][110]; int dp[110]; while(~scanf("%d %d",&n,&m)) { if(n==0&&m==0) break; memset(dp,0,sizeof(dp)); for(i=1;i<=n;i++) for(j=1;j<=m;j++) scanf("%d",&f[i][j]); for(i=1;i<=n;i++)//分组数 for(j=m;j>=1;j--)//容量体积 for(k=1;k<=j;k++)//属于i组的k dp[j]=max(dp[j],dp[j-k]+f[i][k]); printf("%d\n",dp[m]); } return 0; }
ACboy needs your help(背包九讲_分组背包)
标签:des style http color os io strong ar for
原文地址:http://blog.csdn.net/u013486414/article/details/38904493