只做最好的题解 摘要:#include<iostream> //#include<bits/stdc++.h> #include<cmath> #include<cstring> #include<algorith…… 题解列表 2021年03月23日 0 点赞 0 评论 506 浏览 评分:2.0
蓝桥杯2019年第十届真题-完全二叉树的权值 优质题解 摘要:#include <iostream> #include<math.h> using namespace std; int main() { int N; cin>>N; …… 题解列表 2021年03月22日 0 点赞 0 评论 764 浏览 评分:0.0
简单粗暴(适合小白) 摘要:解题思路:依题目内容暴力!!!!注意事项:无参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int i,n,j,m,k,c,d[…… 题解列表 2021年03月22日 0 点赞 0 评论 523 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:解题思路:switch判断注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; …… 题解列表 2021年03月21日 0 点赞 0 评论 714 浏览 评分:7.3
蓝桥杯2018年第九届真题-缩位求和 摘要:参考代码:#include<iostream> #include<string> using namespace std; int main() { string s; …… 题解列表 2021年03月21日 0 点赞 0 评论 756 浏览 评分:0.0
蓝桥杯算法提高VIP-计算质因子 vector,iterator解法 摘要:解题思路:先找出所有的质因子,压紧vector,随后通过迭代器去重;注意事项:去重时,遍历要从迭代器的begin+1开始;参考代码:#include<iostream> #include<vecto…… 题解列表 2021年03月21日 0 点赞 0 评论 724 浏览 评分:9.9
思路简单,清晰明了 #基本上用汉语怎么求,代码就怎么求#####根据月份统计天数,之后相加```#includeusingnamespacestd;structNode{intyear;intmonth;intday;intnum;};intday_month(inty, 题解列表 2021年03月21日 0 点赞 0 评论 777 浏览 评分:9.9
蓝桥杯算法提高-秘密行动 题解 摘要:解题思路:我的想法比较笨,但是能对就好了啊。注意事项:参考代码:#include<bits/stdc++.h> #define rint register int using namespace …… 题解列表 2021年03月20日 0 点赞 0 评论 733 浏览 评分:0.0
Minesweeper c++代码 摘要:解题思路:将'.'转化为'0',找到'*'后,周围加+。注意事项:check函数中,不需要检测有无越界,输出时限界输出。参考代码:#include <i…… 题解列表 2021年03月19日 0 点赞 0 评论 531 浏览 评分:0.0
2047x皇后问题题解 摘要:解题思路:bcd数组分别代表:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[11],n;bool b[11],c[11],d[…… 题解列表 2021年03月19日 0 点赞 1 评论 884 浏览 评分:8.0