幸福酸奶

文章
6
资源
0
加入时间
2年10月17天

多重背包问题

 #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...