信息学奥赛一本通T1279-橱窗布置 dfs+剪枝 摘要:解题思路:由于本人不会dp所以来一发dfs解题,哈哈哈注意事项:参考代码:#include"bits/stdc++.h"usingnamespacest…… 题解列表 2025年04月03日 0 点赞 0 评论 205 浏览 评分:0.0
演讲大赛评分 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){ i…… 题解列表 2025年04月03日 0 点赞 0 评论 143 浏览 评分:0.0
求组合数(模拟) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;constintN&…… 题解列表 2025年04月03日 0 点赞 0 评论 128 浏览 评分:0.0
母牛生小牛(递推) 摘要:解题思路:第i天牛的数量等于前一天牛的数量(f[i-1]) 加上第i天新下的牛(f[i-3])注意事项:参考代码:#include<bits/stdc++.h>usingn…… 题解列表 2025年04月03日 0 点赞 0 评论 95 浏览 评分:0.0
编写题解 1461: 蓝桥杯基础练习VIP-FJ的字符串 摘要:` #include #include #include #include #include using namespace…… 题解列表 2025年04月03日 1 点赞 0 评论 156 浏览 评分:9.0
编写题解 1032: [编程入门]自定义函数之字符串连接 摘要: #include #include #include #include #include using namespace std;…… 题解列表 2025年04月03日 0 点赞 0 评论 463 浏览 评分:0.0
编写题解 1031: [编程入门]自定义函数之字符串反转 摘要: #include #include #include #include #include using namespace std;…… 题解列表 2025年04月03日 1 点赞 0 评论 762 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计 摘要: #include #include #include #include #include using namespace std;…… 题解列表 2025年04月03日 3 点赞 0 评论 793 浏览 评分:0.0
密文搜索-暴力匹配 摘要:## 暴力匹配```javaimport java.util.*;public class Main { public static void main(String…… 题解列表 2025年04月03日 0 点赞 0 评论 158 浏览 评分:0.0
最简单的方法 摘要:解题思路:运用sort函数注意事项:sort函数是由小到大排序 逆序输出排序后的m个数组元素即可参考代码:#include<bits/stdc++.h>#define int long l…… 题解列表 2025年04月03日 1 点赞 0 评论 217 浏览 评分:10.0