复习观看wwwwwwwwwwwwwww 摘要:#include#include#include#include#include#includeusing namespace std;int main(){ in…… 题解列表 2025年02月20日 0 点赞 0 评论 138 浏览 评分:0.0
菲暃要加油——蛇行矩阵 摘要:解题思路:注意事项:参考代码:n=int(input())l=[[]foriinrange(n)]k=1foriin…… 题解列表 2025年02月20日 0 点赞 0 评论 199 浏览 评分:0.0
矩形面积交 摘要:解题思路:通过画图可知,两矩形的边的表示方法注意事项:参考代码:a = list(map(float, input().split()))b = list(map(float, input().spl…… 题解列表 2025年02月20日 0 点赞 0 评论 179 浏览 评分:0.0
分数线划定 摘要:```cpp#include #include using namespace std;struct interviewer{ int number; int score;…… 题解列表 2025年02月20日 0 点赞 0 评论 248 浏览 评分:0.0
比较容易理解的代码 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[105][105];void move(int &x…… 题解列表 2025年02月20日 0 点赞 0 评论 304 浏览 评分:0.0
递推公式:成虫繁殖 摘要:```cpp/*题目描述科学家在热带森林中发现了一种特殊的昆虫,这种昆虫的繁殖能力很强。每对成虫过x个月产y对卵,每对卵要过两个月长成成虫。假设每个成虫不死,第一个月只有一对成虫,且卵长成…… 题解列表 2025年02月21日 0 点赞 0 评论 352 浏览 评分:0.0
3222: 蓝桥杯2024年第十五届省赛真题-回文数组 摘要:解题思路:注意事项:参考代码:n = int(input())arr = list(map(int,input().split()))length = int(len(arr) / 2)a=[0]*l…… 题解列表 2025年02月21日 0 点赞 0 评论 694 浏览 评分:0.0
进制练习之十六进制转八进制C++/乱搞 摘要:当然,第一种方法是乱搞:```cpp#includeusing namespace std;int main(){ int a; printf("%o\n", a)…… 题解列表 2025年02月21日 0 点赞 0 评论 190 浏览 评分:0.0
明明的随机数(使用unordered_set和sort) 摘要:> unordered_set可以去重,但是不能用cin输入,要用**insert**> sort排序,默认升序。***unordered_set不能用sort***,先复制到vector中…… 题解列表 2025年02月21日 2 点赞 0 评论 388 浏览 评分:0.0
纪念品分组(贪心思维) 摘要:> 直接排序,让价格从低到高,然后价格高的和低的一起,如果没有超过上限,就一组,cnt++> 如果超过上限,价格高的一组,cnt++```cpp#include using nam…… 题解列表 2025年02月21日 2 点赞 0 评论 310 浏览 评分:0.0