编写题解 2554: 交点 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { doubl…… 题解列表 2023年10月30日 0 点赞 0 评论 374 浏览 评分:0.0
2547: [CSP-J2019] 数字游戏 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str; int cou…… 题解列表 2023年10月30日 0 点赞 0 评论 448 浏览 评分:0.0
2544: N以内累加求和 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n,sum=0; cin>>n…… 题解列表 2023年10月30日 0 点赞 0 评论 411 浏览 评分:0.0
2543: 简单计算机器实现 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { int a…… 题解列表 2023年10月30日 0 点赞 0 评论 432 浏览 评分:9.9
2333: 信息学奥赛一本通T1182-合影效果 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; struct student{ str…… 题解列表 2023年10月30日 0 点赞 0 评论 469 浏览 评分:0.0
2233: 蓝桥杯算法训练-图形显示 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; cin>>n; …… 题解列表 2023年10月30日 0 点赞 0 评论 391 浏览 评分:0.0
2215: 蓝桥杯算法训练-1的个数 摘要:解题思路:注意事项:参考代码:#includeusing namespace std; int main() { long long a; int count=0; …… 题解列表 2023年10月29日 0 点赞 0 评论 510 浏览 评分:0.0
2216: 蓝桥杯算法训练-加法运算 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int GetTwoInts() { int a,b; cin>…… 题解列表 2023年10月29日 0 点赞 0 评论 392 浏览 评分:0.0
2222: 蓝桥杯算法训练-P0103 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { char ch; cin>>ch; …… 题解列表 2023年10月29日 0 点赞 0 评论 447 浏览 评分:0.0
优质题解 BFS板子题(C++版) 摘要:# 分析题意 这道题是一道BFS的板子题,属于是在网格中寻找最短路。在求解无边权最短路问题时,我们一般都可以采用BFS来做。 # BFS BFS简而言之,就是优先考虑离当前节点最近的所有点,再依…… 题解列表 2023年10月29日 0 点赞 0 评论 1525 浏览 评分:9.9