2025/7/28刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int num ; scanf("%d…… 题解列表 2025年07月28日 0 点赞 0 评论 33 浏览 评分:0.0
2025/7/28刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int R,M,Y; scanf("%…… 题解列表 2025年07月28日 0 点赞 0 评论 26 浏览 评分:0.0
2025/7/28刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,m; scanf("%d …… 题解列表 2025年07月28日 0 点赞 0 评论 28 浏览 评分:0.0
编写题解 3210: 蓝桥杯2024年第十五届省赛真题-R 格式(注释清晰,简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){&nb…… 题解列表 2025年07月28日 0 点赞 0 评论 23 浏览 评分: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 评论 32 浏览 评分:0.0
最长公共子序列lcs(DP) 摘要:解题思路:DP注意事项:参考代码:#include<iostream>usingnamespacestd;constintN&nbs…… 题解列表 2025年07月27日 0 点赞 0 评论 29 浏览 评分:0.0
最长不下降子序列的长度(DP) 摘要:解题思路:DP注意事项:参考代码:#include<iostream>usingnamespacestd;constintN&nbs…… 题解列表 2025年07月27日 0 点赞 0 评论 29 浏览 评分:0.0
2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int k; scanf("%d&qu…… 题解列表 2025年07月26日 0 点赞 0 评论 33 浏览 评分:0.0
2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d …… 题解列表 2025年07月26日 0 点赞 0 评论 23 浏览 评分:0.0
2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d&qu…… 题解列表 2025年07月26日 0 点赞 0 评论 29 浏览 评分:0.0