多重背包问题 #include <bits/stdc++.h>using namespace std;struct E{ int w; //体积 int v; //重量} lis[2001];int dp[101];int main(){ int T,n,m; int p,h,k; int i,j; int... 模板 2023-11-15 36 点赞 0 评论 54 浏览