C++版本——低耦合模拟 摘要:```cpp #include using namespcae std; int a[105][105]; int row,cal; int cnt = 0; //根据字母移动 vo…… 题解列表 2021年04月17日 0 点赞 0 评论 150 浏览 评分:0.0
蓝桥杯2014年第五届真题-兰顿蚂蚁 摘要:#### 其实这种题目最主要的还是看题,审题,思路理清楚,用常规思维也可以解出来的,我们跟着题目要求条件来。给出坐标(从0开始的),那我们肯定从坐标点开始 1. 首先判断黑白格,白格则左转90度,那…… 题解列表 2021年04月12日 0 点赞 0 评论 219 浏览 评分:0.0
蓝桥杯2014年第五届真题-兰顿蚂蚁 c++题解 摘要:解题思路:比较简单的一道题注意事项:注意方向的对应,行数是越向下越大参考代码:#include <iostream> #include <vector> #include <string> …… 题解列表 2021年04月11日 0 点赞 0 评论 57 浏览 评分:0.0
蓝桥杯2014年第五届真题-兰顿蚂蚁 c++题解 摘要:解题思路:比较简单的一道题注意事项:注意方向的对应,行数是越向下越大参考代码:#include <iostream> #include <vector> #include <string> …… 题解列表 2021年04月11日 0 点赞 0 评论 56 浏览 评分:0.0
C语言,简单易懂 摘要:```c #include int main() { int m,n,a[100][100],i,j,x,y,k,b; char s; scanf("%d %d",&m,&n); …… 题解列表 2021年04月08日 0 点赞 0 评论 151 浏览 评分:0.0
兰顿蚂蚁 Python直接思路 摘要:解题思路:注意事项:参考代码:def white(mapList, x, y, direction, steps): mapList[x][y] = 1 if direction …… 题解列表 2021年04月03日 0 点赞 0 评论 481 浏览 评分:9.9
蓝桥杯2014年第五届真题-兰顿蚂蚁 摘要:```c #include int main() { int m,n,i,j,x,y,k,cs=0,map[105][105]={0},dx[4]={-1,0,1,0}, dy[4]={0,…… 题解列表 2021年03月25日 0 点赞 0 评论 309 浏览 评分:9.9
1429: 蓝桥杯2014年第五届真题-兰顿蚂蚁(Python3)简单模拟 摘要:解题思路:注意事项:参考代码:row, col = map(int, input().split()) map_ = [list(map(int, input().split()))[:col] f…… 题解列表 2021年03月24日 0 点赞 0 评论 202 浏览 评分:9.9
轻松利用C语言解《兰顿蚂蚁》 摘要:解题思路:根据当前位置坐标判断下一步行走方向和所要改变的位置颜色。(交流学习:1490707770)注意事项:参考代码:#include<stdio.h> int *p,*f;char *asp;vo…… 题解列表 2021年03月24日 0 点赞 0 评论 352 浏览 评分:0.0
python解法,注释详细 摘要:解题思路:黑色的转向作为基准:(如果是要白色为底,则把value的值*-1即可注意事项:参考代码:m, n = map(int, input().split())l = [0] * m # 初始化列…… 题解列表 2021年03月22日 0 点赞 0 评论 117 浏览 评分:0.0