码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 2191 HDU 2191 悼念512汶川大地震遇难同胞――珍惜现在,感恩生活 (01背包入门)

时间:2016-03-26 15:39:48      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

 1 /*************************************
 2 
 3   01背包入门题
 4   把每袋大米做01背包就可以了。
 5   http://acm.hdu.edu.cn/showproblem.php?pid=2191
 6   
 7 *************************************/
 8 
 9 #include<iostream>
10 #include<cstring>
11 #include<algorithm>
12 using namespace std;
13 
14 const int mx=111;
15 int dp[mx],p[mx];
16 int h[mx],c[mx];
17 
18 int main()
19 {
20     int n,m,i,j,t;
21     cin>>t;
22     while (t--)
23     {
24         cin>>n>>m;
25         for (i=0;i<m;i++) cin>>p[i]>>h[i]>>c[i];
26         memset(dp,0,sizeof(dp));
27 
28         for (i=0;i<m;i++)   ///01背包模板
29         {
30             while (c[i]--)  ///把每袋大米做01背包就可以了。
31             {
32                 for (j=n;j>=p[i];j--)
33                 dp[j]=max(dp[j],dp[j-p[i]]+h[i]);
34             }
35         }
36         cout<<dp[n]<<endl;
37     }
38 
39 }

 

HDU 2191 HDU 2191 悼念512汶川大地震遇难同胞――珍惜现在,感恩生活 (01背包入门)

标签:

原文地址:http://www.cnblogs.com/pblr/p/5322846.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!