解题思路:模拟题目描述的蚂蚁行动规则
注意事项:
参考代码:
m, n = map(int, input().strip().split()) matrix = [] for i in range(m): matrix.append(list(map(int, input().strip().split()))) temp = input().strip().split() x, y, s, k = int(temp[0]), int(temp[1]), temp[2], int(temp[3]) directions = {"L": [(0, -1), ("D", "U")], "U": [(-1, 0), ("L", "R")], "R": [(0, 1), ("U", "D")], "D": [(1, 0), ("R", "L")]} # 第一个元组对应移动,第二个元组对应(左转,右转) while k: if matrix[x][y] == 0:#白格 matrix[x][y] = 1#改黑格 s = directions[s][1][0] #左转90->向下,即D if 0 <= x + directions[s][0][0] <= m and 0 <= y + directions[s][0][1] <= n:#边界就不移动,只执行前面的改颜色和改方向 x += directions[s][0][0] y += directions[s][0][1] else: matrix[x][y] = 0 s = directions[s][1][1] if 0 <= x + directions[s][0][0] <= m and 0 <= y + directions[s][0][1] <= n: x += directions[s][0][0] y += directions[s][0][1] k -= 1 print(x, y)
0.0分
0 人评分
C二级辅导-计负均正 (C语言代码)浏览:652 |
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:912 |
【数组的距离】 (C语言代码)浏览:787 |
小明A+B (C语言代码)浏览:1316 |
C语言训练-阶乘和数* (C语言代码)-------- 呆板写法浏览:1396 |
C语言训练-求1+2!+3!+...+N!的和 (C语言代码)万恶的long long浏览:906 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:1482 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:701 |
C语言程序设计教程(第三版)课后习题10.3 (C语言代码)浏览:1968 |
矩阵乘方 (C语言代码)浏览:1079 |