摘要: http://poj.org/problem?id=1742多重背包的题目:才开始不知道怎么来统计最后可以给出多少种价格,因为以前的形式都是给出c[i],w[i],b[i]的这里没有给出,后来自己yy了一下,利用多粗冲背包向01背包转换的第一种方法后最后从1到V里所有出现的不同的金钱数量不就是最终可以给出的各种价格吗。01背包转换的第一种方法o(n^3)肯定会TLE代码如下:View Code #include <iostream>#include <cstdio>#include <cstring>using namespace std;const int 阅读全文
posted @ 2011-12-08 16:42 E_star 阅读(761) 评论(0) 推荐(0) 编辑