记录编号 |
345061 |
评测结果 |
AAAAA |
题目名称 |
[NOIP 2001PJ]装箱问题 |
最终得分 |
100 |
用户昵称 |
Kulliu |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.000 s |
提交时间 |
2016-11-10 19:05:47 |
内存使用 |
0.00 MiB |
显示代码纯文本
#include<algorithm>
#include<iostream>
#include<cstring>
#include<cstdlib>
#include<vector>
#include<cstdio>
#include<cctype>
#include<ctime>
#include<cmath>
#include<queue>
#include<list>
#include<map>
#include<set>
using namespace std;
typedef long long LL;
int n,v,f[20010];
inline void read(int &v){
v=0;char ch=getchar();
while(ch<'0'||ch>'9'){ch=getchar();}
while(ch>='0'&&ch<='9'){v=v*10+ch-48;ch=getchar();}
}
int Main(){
freopen("npack.in","r",stdin);
freopen("npack.out","w",stdout);
read(v),read(n);
for(int i=1;i<=n;i++){
int t;read(t);
for(int j=v;j>=t;j--)
f[j]=max(f[j-t]+t,f[j]);
}
printf("%d\n",v-f[v]);
}
int start=Main();
int main(){;}