绝对清晰的矩阵求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int dp[3][3]; int i,j,q=0,p=…… 题解列表 2021年04月14日 0 点赞 0 评论 618 浏览 评分:8.0
编写题解 2332: 信息学奥赛一本通T1181-整数奇偶排序 -quick sort 摘要:解题思路:先分组,然后分别排序注意事项:最后建议不要一起输出参考代码:#include <stdio.h>#include <stdlib.h>int cmp(const void *a,const …… 题解列表 2021年04月14日 0 点赞 0 评论 741 浏览 评分:9.9
蓝桥杯算法提高VIP-扫雷 ```javaScannerscanner=newScanner(System.in);intz=1;while(true){intn=scanner.nextInt();intm=scanner.nextInt();if(n==0&&m==0){break;}Character[][]aCharac 题解列表 2021年04月14日 0 点赞 0 评论 689 浏览 评分:0.0
核桃数量(c++代码实现,简单易懂) 摘要:解题思路:该题求的是最小公倍数注意事项:参考代码:#include <iostream> using namespace std; int main() { int a, b, c; …… 题解列表 2021年04月14日 0 点赞 0 评论 987 浏览 评分:8.3
1432: 蓝桥杯2013年第四届真题-剪格子(Python3)DFS 摘要:解题思路:注意事项:参考代码:def dfs(x=0, y=0, add_all=0): global map_, visited, around, sum_, res, end_flag …… 题解列表 2021年04月14日 0 点赞 0 评论 616 浏览 评分:2.0
回文串-题解 摘要: 参考代码:#include"bits/stdc++.h" using namespace std; char str[280]; bool check(char *s,int a,int b)…… 题解列表 2021年04月14日 0 点赞 0 评论 609 浏览 评分:0.0
蓝桥杯历届试题-回文数字(C语言) 摘要:解题思路:两个函数:1.求各位数之和;2.判断是否为回文数字。注意事项:可用sprintf()把数字转化为字符串方便操作。参考代码:// [蓝桥杯][历届试题]回文数字#include <stdio.…… 题解列表 2021年04月14日 0 点赞 0 评论 754 浏览 评分:9.9
大神的探险 之 破解密码 -注意范围 摘要:注意事项:因为a,b的范围为int 所以相加超int,用long long 即可参考代码:#include"bits/stdc++.h" using namespace std; int mai…… 题解列表 2021年04月14日 0 点赞 0 评论 568 浏览 评分:9.0
凯撒密码--易理解 摘要:解题思路:例:由B变为W B的ASCII码为66 W的ASCII码为87 即为+21注意事项:取余26参考代码:#include"bits/stdc++.h" using namesp…… 题解列表 2021年04月14日 0 点赞 0 评论 860 浏览 评分:9.9
得得得得得 提交了好几次都不过,最后直接复制的另一篇题解哪位大佬有空帮忙看一下-树状数组离散化0分```cpp#includeusingnamespacestd;constintN=1e6+10;intn;intnum;intans;inttreeArr[N];structnode{intidx;intval;b 题解列表 2021年04月14日 0 点赞 1 评论 855 浏览 评分:9.9