1429: 蓝桥杯2014年第五届真题-兰顿蚂蚁(Python3)简单模拟 摘要:解题思路:注意事项:参考代码:row, col = map(int, input().split()) map_ = [list(map(int, input().split()))[:col] f…… 题解列表 2021年03月24日 0 点赞 0 评论 204 浏览 评分: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 评论 317 浏览 评分:9.9
兰顿蚂蚁 Python直接思路 摘要:解题思路:注意事项:参考代码:def white(mapList, x, y, direction, steps): mapList[x][y] = 1 if direction …… 题解列表 2021年04月03日 0 点赞 0 评论 494 浏览 评分:9.9
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 评论 154 浏览 评分:0.0
蓝桥杯2014年第五届真题-兰顿蚂蚁 c++题解 摘要:解题思路:比较简单的一道题注意事项:注意方向的对应,行数是越向下越大参考代码:#include <iostream> #include <vector> #include <string> …… 题解列表 2021年04月11日 0 点赞 0 评论 59 浏览 评分:0.0
蓝桥杯2014年第五届真题-兰顿蚂蚁 c++题解 摘要:解题思路:比较简单的一道题注意事项:注意方向的对应,行数是越向下越大参考代码:#include <iostream> #include <vector> #include <string> …… 题解列表 2021年04月11日 0 点赞 0 评论 61 浏览 评分:0.0
蓝桥杯2014年第五届真题-兰顿蚂蚁 摘要:#### 其实这种题目最主要的还是看题,审题,思路理清楚,用常规思维也可以解出来的,我们跟着题目要求条件来。给出坐标(从0开始的),那我们肯定从坐标点开始 1. 首先判断黑白格,白格则左转90度,那…… 题解列表 2021年04月12日 0 点赞 0 评论 226 浏览 评分:0.0
C++版本——低耦合模拟 摘要:```cpp #include using namespcae std; int a[105][105]; int row,cal; int cnt = 0; //根据字母移动 vo…… 题解列表 2021年04月17日 0 点赞 0 评论 155 浏览 评分:0.0
1429: 蓝桥杯2014年第五届真题-兰顿蚂蚁 摘要: #include #include using namespace std; int mapp[105][015]; int v[4][2]={{-1,0},{0,1},{1,0…… 题解列表 2021年04月25日 0 点赞 0 评论 180 浏览 评分:0.0
1429:[2014年第五届真题]兰顿蚂蚁 思路清晰易理解 摘要:int main(){ int m,n; cin>>m>>n; int a[m][n]; for(int i=0;i<m;i++){ f 题解列表 2021年05月29日 0 点赞 0 评论 360 浏览 评分:9.9