01背包

//01背包
for i=1..N     
	for v=V..0         
		f[v]=max{f[v],f[v-c[i]]+w[i]};

 

posted on 2013-08-13 21:18  Amyc  阅读(71)  评论(0编辑  收藏  举报