标签:输入 content 习惯 哪些 包含 背包 begin 测试数据 使用
宇航员Bob有一天来到火星上,他有收集硬币的习惯。于是他将火星上所有面值的硬币都收集起来了,一共有n种,每种只有一个:面值分别为a1,a2… an。 Bob在机场看到了一个特别喜欢的礼物,想买来送给朋友Alice,这个礼物的价格是X元。Bob很想知道为了买这个礼物他的哪些硬币是必须被使用的,即Bob必须放弃收集好的哪些硬币种类。飞机场不提供找零,只接受恰好X元。
5 18 1 2 3 5 10
2 5 10
program ex03; var f:array[0..10000] of int64; a,ans:array[0..1000] of longint; n,tot,x:longint; procedure dp; //01背包 var i,j:longint; begin f[0]:=1; for i:=1 to n do for j:=x downto a[i] do begin f[j]:=f[j]+f[j-a[i]]; end; end; procedure init; var i:longint; begin readln(n,x); for i:=1 to n do read(a[i]); end; function cal(x,y:longint):longint; begin if x<0 then exit(0) else exit(f[x]-cal(x-y,y)); end; procedure doit; var i:longint; begin for i:=1 to n do begin if f[x]-cal(x-a[i],a[i])=0 then //判断是否必要 begin inc(tot); ans[tot]:=a[i]; end; end; end; procedure print; var i:longint; begin writeln(tot); for i:=1 to tot do write(ans[i],‘ ‘); end; begin init; dp; doit; print; end.
标签:输入 content 习惯 哪些 包含 背包 begin 测试数据 使用
原文地址:http://www.cnblogs.com/fengjunjie/p/6034994.html