摘要:
###2. 01背包问题 链接:https://www.acwing.com/problem/content/2/ // 二维解法 #include <iostream> using namespace std; const int N = 1010; int n, m, v[N], w[N], f 阅读全文
摘要:
842.排列数字 链接:https://www.acwing.com/problem/content/844/ #include <iostream> using namespace std; const int N = 10; int n; int path[N]; bool st[N]; voi 阅读全文