摘要: 背包问题模板const int MAXN = 101;const int SIZE = 50001;int dp[SIZE];int volume[MAXN], value[MAXN], c[MAXN];int n, v; // 总物品数,背包... 阅读全文
posted @ 2018-08-15 10:42 ronnie14165 阅读(91) 评论(0) 推荐(0) 编辑