2025/8/7刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,b,m; scanf("%…… 题解列表 2025年08月07日 0 点赞 0 评论 25 浏览 评分:0.0
2025/8/7刷题记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double arr[]={28.9,32.7,45.6,78,35,8…… 题解列表 2025年08月07日 0 点赞 0 评论 26 浏览 评分:0.0
2025/8/7刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; int arr[10];&nb…… 题解列表 2025年08月07日 0 点赞 0 评论 40 浏览 评分:0.0
2025/8/7刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,b,m; scanf("%…… 题解列表 2025年08月07日 0 点赞 0 评论 31 浏览 评分:0.0
2025/8/7刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d&qu…… 题解列表 2025年08月07日 0 点赞 0 评论 29 浏览 评分:0.0
2025/8/6刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,d; char c;…… 题解列表 2025年08月06日 0 点赞 0 评论 87 浏览 评分:0.0
2025/8/6刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d&qu…… 题解列表 2025年08月06日 0 点赞 0 评论 112 浏览 评分:0.0
2025/8/6刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; long long int sum…… 题解列表 2025年08月06日 0 点赞 0 评论 92 浏览 评分:0.0
编写题解 1075: 台球碰撞(注释清晰 简单易懂) 摘要: #include #include #define PI 3.141592653589793 int main() { double L, W, x, y, R, a, v, …… 题解列表 2025年08月06日 0 点赞 0 评论 96 浏览 评分:0.0
悠闲的漫步(DFS) 摘要:解题思路:树的表示:使用邻接表tree[N]存储树结构,tree[p]包含节点p的所有子节点。根节点查找:通过nop数组标记有父节点的节点,未被标记的节点即为根节点。深度计算:从根节点开始,通过 DF…… 题解列表 2025年08月06日 0 点赞 0 评论 75 浏览 评分:0.0