编写题解 1131: C语言训练-斐波纳契数列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll ;const ll N=1e6;ll a…… 题解列表 2024年07月20日 0 点赞 0 评论 147 浏览 评分:9.9
2332: 信息学奥赛一本通T1181-整数奇偶排序 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e5;ll a…… 题解列表 2024年07月21日 0 点赞 0 评论 96 浏览 评分:9.9
编写题解 2332: 信息学奥赛一本通T1181-整数奇偶排序 摘要:解题思路:先用sort排序,再输出注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const in…… 题解列表 2024年07月21日 0 点赞 0 评论 64 浏览 评分:9.9
2909: 直方图 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e5;ll p…… 题解列表 2024年07月21日 0 点赞 0 评论 128 浏览 评分:9.9
编写题解 2749: Hello, World! 摘要:解题思路:注意事项:参考代码: #include<iosteam> using namespace std; &nb 题解列表 2024年07月21日 0 点赞 0 评论 202 浏览 评分:9.9
编写题解 2974: 统计字符数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e5;stri…… 题解列表 2024年07月21日 0 点赞 0 评论 104 浏览 评分:9.9
2974: 统计字符数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>typedef long long ll;using namespace std;const int N=1e6;ll t…… 题解列表 2024年07月21日 0 点赞 0 评论 96 浏览 评分:9.9
编写题解 2881: 图像相似度 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N=1e3;int a[N][N],b[N][N];int m…… 题解列表 2024年07月21日 0 点赞 0 评论 78 浏览 评分:9.9
猴子吃桃的问题 摘要:解题思路:倒退回去算,思路为: 现在桃子数量 = (现在桃子数量 + 1) * 2;注意事项:按题目的来,第10天没吃。所以有3070个桃子是错的。参考代码:#include <iostream…… 题解列表 2024年07月21日 0 点赞 0 评论 120 浏览 评分:9.9
编写题解 2973: 出现次数超过一半的数 摘要:解题思路:先计数排序 再判断注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=…… 题解列表 2024年07月22日 0 点赞 0 评论 63 浏览 评分:9.9