zsbdzsbdzsbdzsbdzsbdzsbd 摘要:参考代码:n=int(input())data=[int(i)foriininput().split…… 题解列表 2025年04月11日 0 点赞 0 评论 136 浏览 评分:0.0
暴力写法优化 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long re=0; …… 题解列表 2025年04月11日 0 点赞 0 评论 147 浏览 评分:0.0
链表代码参考如下 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct node{ int data; …… 题解列表 2025年04月11日 0 点赞 0 评论 206 浏览 评分:0.0
狡兔 k 窟-bfs 摘要:解题思路:要求两个点之间的最点距离,同时属于同一个洞窟的点他们之间的距离为0那么该问题可以转换为求解两个洞窟的最短距离依次构建的图是关于洞窟的而不是点例如1 3 2 1 2 3:1和4点都属于1号洞窟…… 题解列表 2025年04月11日 0 点赞 0 评论 203 浏览 评分: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 评论 140 浏览 评分:0.0
连续自然数和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;constintN&…… 题解列表 2025年04月11日 0 点赞 0 评论 86 浏览 评分: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 评论 153 浏览 评分:0.0
简单递归调用 摘要:str = input()def func(l,d,t): if t==0: if l>d: &nbs…… 题解列表 2025年04月11日 0 点赞 0 评论 145 浏览 评分:0.0
用指针数组和字符串解决 摘要:解题思路:声明一个指针数组和字符串,然后更改指针方向后输出指针数组注意事项:参考代码:#include <stdio.h>typedef struct bo { …… 题解列表 2025年04月11日 0 点赞 0 评论 154 浏览 评分:10.0