狡兔 k 窟-bfs 摘要:解题思路:要求两个点之间的最点距离,同时属于同一个洞窟的点他们之间的距离为0那么该问题可以转换为求解两个洞窟的最短距离依次构建的图是关于洞窟的而不是点例如1 3 2 1 2 3:1和4点都属于1号洞窟…… 题解列表 2025年04月11日 0 点赞 0 评论 215 浏览 评分:0.0
通过递推进行求解 摘要:n=int(input())f=[1]*(n+1)for i in range(1,n+1): f[i]=i*f[i-1]%998244353if n==2: &…… 题解列表 2025年04月11日 0 点赞 0 评论 158 浏览 评分:0.0
连续自然数和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;constintN&…… 题解列表 2025年04月11日 0 点赞 0 评论 93 浏览 评分:0.0
按照要求进行模拟排序 摘要:n=int(input())m=int(input())f=[[0]*2 for i in range(n+1)]def func(x): t=0 …… 题解列表 2025年04月11日 0 点赞 0 评论 169 浏览 评分:0.0
简单递归调用 摘要:str = input()def func(l,d,t): if t==0: if l>d: &nbs…… 题解列表 2025年04月11日 0 点赞 0 评论 165 浏览 评分:0.0
用指针数组和字符串解决 摘要:解题思路:声明一个指针数组和字符串,然后更改指针方向后输出指针数组注意事项:参考代码:#include <stdio.h>typedef struct bo { …… 题解列表 2025年04月11日 0 点赞 0 评论 177 浏览 评分:10.0
题解 2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<algorithm>#include <string>#include <…… 题解列表 2025年04月10日 0 点赞 0 评论 260 浏览 评分:0.0
题解 2246: 蓝桥杯算法训练-字符串合并 文章 > 编写题解 摘要:解题思路:加起来就行了。注意事项:参考代码:#include <iostream>#include<algorithm>#include <string>#incl…… 题解列表 2025年04月10日 0 点赞 0 评论 110 浏览 评分:0.0
还是那句话:加法永远在10进制下进行 摘要:参考代码:defgetjinzhi(n,jinzhi):#传入的n为10进制res="&q…… 题解列表 2025年04月10日 1 点赞 0 评论 109 浏览 评分:10.0