1503: 蓝桥杯算法提高VIP-前10名(.............) 摘要:```cpp #include using namespace std; int main() { int a, arr[201] = {0}; cin >> a; …… 题解列表 2022年02月18日 0 点赞 0 评论 546 浏览 评分:9.9
数据结构-链表的基本操作 摘要:```cpp #include #include //链表 typedef struct LNode{ int data; struct LNode *next; …… 题解列表 2022年02月18日 0 点赞 0 评论 555 浏览 评分:0.0
1502: 蓝桥杯算法提高VIP-利息计算(...........) 摘要: ```cpp #include using namespace std; int main() { double a, b; cin >> a >> b; p…… 题解列表 2022年02月18日 0 点赞 0 评论 453 浏览 评分:0.0
蓝桥杯2017年第八届真题-九宫幻方(C++) 摘要: 知道上图进行若干镜像和旋转操作之后,一共可以形成8种答案,这道题就好解许多 …… 题解列表 2022年02月18日 0 点赞 0 评论 607 浏览 评分:9.9
一个运用基础知识能解的题 摘要:解题思路: 利用多次for循环输入到一个一维数组a[105](因为是N <=100,所以a[105]够了)里, 然后再利用for把重复的都标记 题解列表 2022年02月18日 0 点赞 0 评论 423 浏览 评分:9.9
省份证号升级 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <iostream>#include <string.h>using namespace std;int main(…… 题解列表 2022年02月18日 0 点赞 0 评论 429 浏览 评分:0.0
编写题解 1002: [编程入门]三个数最大值--解题 摘要:解题思路:相互比较注意事项:参考代码:#include<stdio.h>#include<iostream>using namespace std;int main (){ int a,b,c;…… 题解列表 2022年02月18日 0 点赞 0 评论 353 浏览 评分:0.0
打字练习c++ 摘要:解题思路:记得换行注意事项:记得换行参考代码:#include<stdio.h>#include<iostream>using namespace std;int main (){ cout<<…… 题解列表 2022年02月18日 0 点赞 0 评论 730 浏览 评分:0.0
1501: 蓝桥杯算法提高VIP-分苹果(c++版)运用差分数组降低时间复杂度 摘要: :tw-2600:**解题思路:** 题目中m n数据量达是1e5限时1sec显然暴力枚举会超时,因此我们就需要使用到**差分数组**,这样可以**降低时间复杂度** **关于差分数组,如果你想…… 题解列表 2022年02月18日 0 点赞 0 评论 743 浏览 评分:10.0
1593: 蓝桥杯算法训练VIP-Hankson的趣味题 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<math.h> #include<algorithm> using na…… 题解列表 2022年02月18日 0 点赞 0 评论 439 浏览 评分:0.0