打印十字图 (C语言代码)思路超简洁 !! 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ char a[130][130]; int df[4][2]={{-1,1},{1,1},{1,-1…… 题解列表 2019年03月20日 0 点赞 1 评论 1782 浏览 评分:9.9
蓝桥杯2017年第八届真题-青蛙跳杯子 (C++代码) 摘要:解题思路:就是个典型广搜就可以了注意事项:这狗比垃圾水题一道,题没读完就开始解题, 然后有个条件没看到一直不对参考代码:#include<iostream>#include…… 题解列表 2019年03月20日 0 点赞 0 评论 985 浏览 评分:9.9
蓝桥杯2017年第八届真题-分考场 (C++代码)典型染图方法 摘要:#include<iostream> #include<cstring> #include<cstdio> using namespace std; int vis[110][110],a[1…… 题解列表 2019年03月30日 0 点赞 0 评论 1119 浏览 评分:9.9
。。保持队形。。:矩阵最大值 (C语言代码)可AC 摘要:#include<stdio.h> int main() { int m,n,i,j,max,t,sum,a[100][100]; while(scanf("%d%d",&m,&n)!=E…… 题解列表 2019年03月21日 3 点赞 0 评论 1773 浏览 评分:9.9
蓝桥杯算法提高VIP-实数相加 (C++代码) 摘要:#include<iostream> #include<algorithm> #include<string> using namespace std; const int N=200; i…… 题解列表 2019年03月21日 0 点赞 0 评论 1093 浏览 评分:9.9
数星星 (C++描述 暴力) 摘要:解题思路:注意事项:参考代码:#include<cstdio> #include<cstring> using namespace std; int map[1001][1001]; in…… 题解列表 2019年03月21日 0 点赞 2 评论 1504 浏览 评分:9.9
蓝桥杯算法提高VIP-打水问题 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; const int N = 1010,M =…… 题解列表 2019年03月21日 0 点赞 0 评论 1155 浏览 评分:9.9
蓝桥杯2017年第八届真题-Excel地址 (C++代码)水题 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<queue> #include<stack> using namespace std; int main(…… 题解列表 2019年03月21日 0 点赞 2 评论 1163 浏览 评分:9.9
蓝桥杯算法提高VIP-特殊的质数肋骨 (C语言代码) DFS遍历, 有注释 摘要:解题思路:符合该种质数的一位的质数为2, 3, 5, 7;而两位的质数为2x, 3x, 5x, 7x....可以发现多一位位数即在前面是质数的基础上 * 10 再 加上 一个数,这个数很明显不能是偶数…… 题解列表 2019年03月21日 1 点赞 2 评论 1964 浏览 评分:9.9
蓝桥杯算法提高VIP-删除数组中的0元素 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Arrays;import java.util.Scanner;public class Main { public static…… 题解列表 2019年03月22日 0 点赞 0 评论 1197 浏览 评分:9.9