1193: 半数集问题 摘要:```cpp #include #include using namespace std; int a[1005]; int f(int n) { if(a[n]) …… 题解列表 2022年12月30日 0 点赞 0 评论 105 浏览 评分:9.9
半数集问题 摘要:解题思路:注意事项:参考代码:from functools import lru_cache@lru_cache(maxsize=1024)def DFS(n): sum1 = 1 for…… 题解列表 2023年01月25日 0 点赞 0 评论 73 浏览 评分:0.0
半数集问题(记忆化搜索) 摘要:一开始果断选择暴力做法,结果就炸了。暴力代码:#include<bits/stdc++.h>using namespace std;long long int ans=1;//因为后面不包括本身,所以…… 题解列表 2023年04月02日 0 点赞 0 评论 86 浏览 评分:9.9