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

poj 3628 Bookshelf 2

时间:2014-09-23 21:18:15      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   div   

http://poj.org/problem?id=3628

01背包

bubuko.com,布布扣
 1 #include <cstdio>
 2 #include <iostream>
 3 #include <cstring>
 4 #include <algorithm>
 5 #define maxn 21
 6 #define ll long long
 7 using namespace std;
 8 
 9 ll h[maxn];
10 int n;
11 ll b;
12 ll dp[1000004];
13 ll max1(ll a,ll b)
14 {
15     return a>b?a:b;
16 }
17 
18 int main()
19 {
20     while(scanf("%d%lld",&n,&b)!=EOF)
21     {
22         ll v=0;
23         for(int i=1; i<=n; i++)
24         {
25             scanf("%lld",&h[i]);
26             v+=h[i];
27         }
28         for(int i=1; i<=n; i++)
29         {
30             for(ll j=v; j>=h[i]; j--)
31             {
32                 dp[j]=max(dp[j-h[i]]+h[i],dp[j]);
33             }
34         }
35         for(ll j=1; j<=v; j++)
36         {
37             if(dp[j]>=b)
38             {
39               printf("%lld\n",dp[j]-b);
40               break;
41             }
42         }
43     }
44     return 0;
45 }
View Code

 

poj 3628 Bookshelf 2

标签:style   blog   http   color   io   os   ar   for   div   

原文地址:http://www.cnblogs.com/fanminghui/p/3989071.html

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