字符串中间和后边*号删除 摘要:解题思路:注意事项:参考代码:#include<string.h>#include<stdio.h> int fun(ch…… 题解列表 2025年04月10日 0 点赞 0 评论 73 浏览 评分:0.0
找树根和孩子 摘要:解题思路:很简单。注意事项: 注意拥有最多孩子节点的编号也需要是最小的,题目只说了孩子编号从小输出。参考代码:#include<bits/stdc++.h>usingnam…… 题解列表 2025年04月10日 0 点赞 0 评论 112 浏览 评分:0.0
超级楼梯(递推) 摘要:解题思路:递推注意事项:参考代码:#include<iostream>usingnamespacestd;constintN&nbs…… 题解列表 2025年04月10日 0 点赞 0 评论 168 浏览 评分:0.0
蓝桥杯2024年第十五届省赛真题-团建 DFS 摘要:解题思路:不知道为什么wa了一个点,但我的代码在蓝桥云课上可以ac。邻接表存边,然后dfs,就可以了注意事项:参考代码:#include"bits/stdc++.h"using…… 题解列表 2025年04月10日 1 点赞 0 评论 314 浏览 评分:0.0
很多注意事项的二分🆒 摘要:import sysinput=lambda:sys.stdin.readline().strip()n,le=map(int,input().split())f=[[0]*2 for i in ra…… 题解列表 2025年04月10日 0 点赞 0 评论 82 浏览 评分:0.0
加法永远在10进制下进行 摘要:解题思路:注意事项:题目的回文是在N进制下的回文参考代码:defgetjinzhi(n,jinzhi):#传入的n为10进制…… 题解列表 2025年04月10日 1 点赞 0 评论 116 浏览 评分:10.0
还是那句话:加法永远在10进制下进行 摘要:参考代码:defgetjinzhi(n,jinzhi):#传入的n为10进制res="&q…… 题解列表 2025年04月10日 1 点赞 0 评论 94 浏览 评分:10.0
题解 2246: 蓝桥杯算法训练-字符串合并 文章 > 编写题解 摘要:解题思路:加起来就行了。注意事项:参考代码:#include <iostream>#include<algorithm>#include <string>#incl…… 题解列表 2025年04月10日 0 点赞 0 评论 98 浏览 评分:0.0
题解 2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<algorithm>#include <string>#include <…… 题解列表 2025年04月10日 0 点赞 0 评论 229 浏览 评分:0.0
用指针数组和字符串解决 摘要:解题思路:声明一个指针数组和字符串,然后更改指针方向后输出指针数组注意事项:参考代码:#include <stdio.h>typedef struct bo { …… 题解列表 2025年04月11日 0 点赞 0 评论 155 浏览 评分:10.0