易理解的计算与求和 摘要:解题思路:注意事项:累计高度加到n-1;为了便于计算全部2*之后-初始高度*1;注意幂次表达用cmath的pow表示参考代码:#include<cstdio>#include<iostream>#in…… 题解列表 2024年03月14日 0 点赞 0 评论 479 浏览 评分:0.0
c++ 找规律分奇数偶数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int a[10000],n; ci…… 题解列表 2024年03月14日 0 点赞 0 评论 565 浏览 评分:0.0
简单的递归 摘要:解题思路:注意事项:注意递归的出口 和递推公式的条件参考代码:#include<cstdio>#include<iostream>#include<cstring>#include<cmath>usi…… 题解列表 2024年03月14日 0 点赞 0 评论 719 浏览 评分:0.0
java--study||O.o 摘要:参考代码: import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; …… 题解列表 2024年03月14日 0 点赞 0 评论 583 浏览 评分:0.0
蓝桥杯算法训练VIP-暗恋 摘要:解题思路:维护一个二维数组的前缀和数组,随后对其检测每一个正方形,若全为1则该正方形的和为其面积。若全为0,则正方形的和为0参考代码:#include<bits/stdc++.h> using na…… 题解列表 2024年03月14日 0 点赞 0 评论 539 浏览 评分:0.0
【C语言题解】编写题解 1673: 数据结构-集合union ```#include#includetypedefstructUnion{intdata;structUnion*next;}*node,Node;//建立链表函数nodecreat(int);//取出L链表中的第i个元素intGetElem(node, 题解列表 2024年03月14日 0 点赞 0 评论 541 浏览 评分:0.0
求分段函数的解 摘要:注意事项:1<=x<10的问题,好多新手都这样写,这在c里面是比较低级的错误,应该这样写 1<=x&&x<1参考代码:#include<stdio.h>int main(){ int x,y…… 题解列表 2024年03月14日 0 点赞 0 评论 782 浏览 评分:0.0
1938: 蓝桥杯算法提高VIP-道路和航路 摘要:解题思路:有负权的单源最短路径,使用spfa算法即可注意事项:不进行SLF优化会超时两个点参考代码:#include<bits/stdc++.h> using namespace std; str…… 题解列表 2024年03月14日 0 点赞 0 评论 527 浏览 评分:0.0
二级C语言-进制转换(python) 摘要:解题思路:二进制:bin() 八进制:oct() 十六进制:hex()注意事项:去除前缀可用切片实现操作参考代码:a=int(input())c=o…… 题解列表 2024年03月14日 0 点赞 0 评论 927 浏览 评分:0.0
2177: 信息学奥赛一本通T1252-走迷宫-BFS #include#include#includeusingnamespacestd;intm,n;stringmaze[45];boolvis[45][45];intdir[4][2]={{-1,0},{0,-1},{1,0},{0,1}};boolin(intx, 题解列表 2024年03月14日 0 点赞 0 评论 603 浏览 评分:0.0