0-1背包 擎天柱 恰好装满 zjut(浙江工业大学OJ) 1355
摘要:
http://acm.zjut.edu.cn/不完全装满取值初始值都为0,恰好装满f[0]初始值为0,其他的为负无穷。得到的玩具的价格按从大到小排序,保证当玩具组合出的价格等于擎天柱价格时,玩具的数量会是最少的View Code 1 #include <cstdio> 2 #include <cstring> 3 #include <algorithm> 4 using namespace std; 5 int f[10010]; 6 int c[10010]; 7 int main() 8 { 9 int n,m;10 int p[20];11 while 阅读全文
posted @ 2013-03-25 22:48 allh123 阅读(210) 评论(0) 推荐(0) 编辑