记录编号 |
404692 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[USACO Dec07] 书架2 |
最终得分 |
100 |
用户昵称 |
人民不需要自由 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.992 s |
提交时间 |
2017-05-14 15:11:06 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<string>
#include<map>
using namespace std;
const int M=2000000006;
const int INF=0x3f3f3f3f;
int h[23];
map<int,int> my;
int main()
{
freopen("shelf2.in","r",stdin);
freopen("shelf2.out","w",stdout);
int n,m;
cin>>n>>m;
for(int i=1;i<=m;i++)
my[i]=INF;
my[0]=0;
for(int i=1;i<=n;i++)
cin>>h[i];
for(int i=1;i<=n;i++)
for(int j=m;j>=0;j--)
{
int t=j+h[i];
if(t>m)
t=m;
my[t]=min(my[t],my[j]+h[i]);
}
cout<<my[m]-m<<endl;
return 0;
}