题解 2038: 简化型背包

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

31.简化型背包-题解(C++代码)

摘要:直接用01变量表示就好啦 此题很简单呀,嘻嘻! ```cpp #include #include using namespace std; int thing[100][100]; in……