动态规划,两个背包同时算 摘要:#### 动态规划 ``` void solve() { int N = in.nextInt(), M = in.nextInt(), K = in.nextInt(); …… 题解列表 2023年06月07日 0 点赞 0 评论 191 浏览 评分:0.0
01背包问题的变形式 摘要:```c package 背包问题; import java.util.Scanner; public class 背包与魔法_01升级版 { private static int …… 题解列表 2023年04月07日 0 点赞 1 评论 291 浏览 评分:9.0
稍微变化的01背包 摘要:解题思路:看注释注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define maxn 2010#define maxm 10010int …… 题解列表 2022年08月09日 0 点赞 0 评论 456 浏览 评分:9.9