Fork me on GitHub
摘要: 完全背包………… #include <algorithm> #include <bitset> #include <cctype> #include <cmath> #include <cstdio> #include <cstdlib> #include <cstring> #include <m 阅读全文
posted @ 2016-12-04 10:08 sxb门徒 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 常用模板多重背包 #include <algorithm> #include <bitset> #include <cctype> #include <cmath> #include <cstdio> #include <cstdlib> #include <cstring> #include <m 阅读全文
posted @ 2016-12-04 10:05 sxb门徒 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 加优化的01背包模板 #include <iostream> using namespace std; int w[210],v[210],f[210]; int main() { freopen("package.in","r",stdin); freopen("package.out","w", 阅读全文
posted @ 2016-12-04 09:31 sxb门徒 阅读(110) 评论(0) 推荐(0) 编辑