记录编号 |
248055 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[Vijos 1071] 新年趣事之打牌 |
最终得分 |
100 |
用户昵称 |
可以的. |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.001 s |
提交时间 |
2016-04-10 07:00:30 |
内存使用 |
0.39 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=1000*110;
int f[maxn],b[maxn],cnt=0,w[maxn],pre[maxn];
int n,tot,Wtot,TOT;
void Init(){
scanf("%d%d",&Wtot,&n);
for(int i=1;i<=n;i++){
int x;
scanf("%d",&x);
w[i]=x;
TOT+=x;
}
tot=TOT-Wtot;
f[0]=1;
for(int i=1;i<=n;i++){
for(int j=tot;j>=w[i];j--){
if(f[j]==0) pre[j]=i;
f[j]=f[j]+f[j-w[i]];
if(f[tot]>1){
printf("-1\n");
return;
}
}
}
if(f[tot]==0){
printf("0\n");
return;
}
int k=tot;
while(k>0){
cnt++;
b[cnt]=pre[k];
k-=w[pre[k]];
}
for(int i=cnt;i>0;i--){
printf("%d ",b[i]);
}
}
int haha(){
freopen("bagb.in","r",stdin);
freopen("bagb.out","w",stdout);
Init();
return 0;
}
int sb=haha();
int main(){;}