题解 1429: 蓝桥杯2014年第五届真题-兰顿蚂蚁

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

C++演示答案

摘要:解题思路: 注意越界判断以及方向符号改变注意事项:参考代码:#include<iostream>using namespace std;const int inf = 1e3;int M,N;int ……

兰顿蚂蚁 Python直接思路

摘要:解题思路:注意事项:参考代码:def white(mapList, x, y, direction, steps):     mapList[x][y] = 1     if direction ……