编写题解 3210: 蓝桥杯2024年第十五届省赛真题-R 格式(注释清晰,简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){&nb…… 题解列表 2025年07月28日 0 点赞 0 评论 75 浏览 评分:0.0
C语言解法递归方法 摘要:#include <stdio.h>int sum;int fun(int n){ if(n/3==0) return n; else { sum+=n/3; fun(n/3+n%3…… 题解列表 2025年07月27日 0 点赞 0 评论 58 浏览 评分:0.0
最长公共子序列lcs(DP) 摘要:解题思路:DP注意事项:参考代码:#include<iostream>usingnamespacestd;constintN&nbs…… 题解列表 2025年07月27日 0 点赞 0 评论 56 浏览 评分:0.0
最长不下降子序列的长度(DP) 摘要:解题思路:DP注意事项:参考代码:#include<iostream>usingnamespacestd;constintN&nbs…… 题解列表 2025年07月27日 0 点赞 0 评论 56 浏览 评分:0.0
2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int k; scanf("%d&qu…… 题解列表 2025年07月26日 0 点赞 0 评论 56 浏览 评分:0.0
2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d …… 题解列表 2025年07月26日 0 点赞 0 评论 46 浏览 评分:0.0
2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d&qu…… 题解列表 2025年07月26日 0 点赞 0 评论 51 浏览 评分:0.0
2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d&qu…… 题解列表 2025年07月26日 0 点赞 0 评论 48 浏览 评分:0.0
2025/7/26刷题记录 摘要:解题思路:找最大值 初始值为限制内最小值 找最小值 初始值找限制内最大值注意事项:参考代码:#include<stdio.h>int main(){ &…… 题解列表 2025年07月26日 0 点赞 0 评论 44 浏览 评分:0.0
2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d&qu…… 题解列表 2025年07月26日 0 点赞 0 评论 60 浏览 评分:0.0