题目描述

地上有一个m行和n列的方格。一个机器人从坐标0,0的格子开始移动,每一次只能向左,右,上,下四个方向移动一格,但是不能进入行坐标和列坐标的数位之和大于k的格子。
例如,当k为18时,机器人能够进入方格(35,37),因为3+5+3+7 = 18。但是,它不能进入方格(35,38),因为3+5+3+8= 19。请问该机器人能够达到多少个格子?

解题思路
回溯法。
初始化一个m行n列的全为0的矩阵,机器人访问过的点都设置为1:

entry = [[0 for i in range(cols)] for j in range(rows)]

采用回溯法迭代访问当前点的周围四个点:

self.move(threshold, rows, cols, entry, x - 1, y)
self.move(threshold, rows, cols, entry, x, y - 1)
self.move(threshold, rows, cols, entry, x + 1, y)
self.move(threshold, rows, cols, entry, x, y + 1)

直到不满足下列三种情况,迭代终止:
1、超出矩阵的索引范围:

if x < 0 or y < 0 or x > rows - 1 or y > cols - 1:
            return

2、当前点已被访问过:

if entry[x][y] == 1:
	 return

3、行坐标和列坐标的数位之和大于k:

if x // 10 + x % 10 + y // 10 + y % 10 > threshold:
	return

完整代码

# -*- coding:utf-8 -*-
class Solution:
    def __init__(self):
        self.count = 0

    def movingCount(self, threshold, rows, cols):
        # write code here
        entry = [[0 for i in range(cols)] for j in range(rows)]
        self.move(threshold, rows, cols, entry, 0, 0)

        return self.count

    def move(self, threshold, rows, cols, entry, x, y):
        if x < 0 or y < 0 or x > rows - 1 or y > cols - 1:
            return
        if entry[x][y] == 1:
            return
        if x // 10 + x % 10 + y // 10 + y % 10 > threshold:
            return
        entry[x][y] = 1
        self.count += 1
        self.move(threshold, rows, cols, entry, x - 1, y)
        self.move(threshold, rows, cols, entry, x, y - 1)
        self.move(threshold, rows, cols, entry, x + 1, y)
        self.move(threshold, rows, cols, entry, x, y + 1)