习题
问题 考察点
领域建模
识别概念类
固定模板 Conceptual Class Category Examples specifications,designs, or descriptions of things roles of people containers of other things things in a container abstract noun concepts organizations events processes (…
背包问题 01 背包完全背包多重背包分组背包 01 背包
有 n 件物品,每个物品只能使用一次,在不超过背包体积的情况下,总价值最大是多少?
#include <iostream>
using namespace std;
const int N 1010;
int n, m;
int v[N],…