題目:機械人的運動範圍
題:地上有乙個m行和n列的方格。乙個機械人從座標0,0的格仔開始移動,每一次只能向左,右,上,下四個方向移動一格,但是不能進入行座標和列座標的數字之和大於k的格仔。 例如,當k為18時,機械人能夠進入方格(35,37),因為3+5+3+7 = 18。但是,它不能進入方格(35,38),因為3+5+3+8 = 19。請問該機械人能夠達到多少個格仔?
# -*- coding:utf-8 -*-
class solution:
def movingcount(self, threshold, rows, cols):#threshold閾值,count格仔數
# write code here
if threshold < 0 or rows < 1 or cols < 1:
return 0
markmatrix = [false] * (rows * cols)
count = self.movingcountcore(threshold, rows, cols, 0, 0, markmatrix)
return count
def movingcountcore(self, threshold, rows, cols, row, col, markmatrix):
value = 0
if self.check(threshold, rows, cols, row, col, markmatrix):
markmatrix[row * cols + col] = true
value = 1 + self.movingcountcore(threshold, rows, cols, row - 1, col, markmatrix) + \
self.movingcountcore(threshold, rows, cols, row + 1, col, markmatrix) + \
self.movingcountcore(threshold, rows, cols, row, col - 1, markmatrix) + \
self.movingcountcore(threshold, rows, cols, row, col + 1, markmatrix)
return value
def check(self, threshold, rows, cols, row, col, markmatrix):#滿足要求返回true,否則false
if row >= 0 and row < rows and col >= 0 and col < cols and \
self.getdigitnum(row) + self.getdigitnum(col) <= threshold and not markmatrix[
row * cols + col]:
return true
return false
def getdigitnum(self, number):#目的求數字和
sum = 0
while (number > 0):
sum += number % 10
number = number // 10
return sum
面試題13 機械人的運動範圍
地上有乙個m行和n列的方格。乙個機械人從座標 0,0 的格仔開始移動,每一次只能向左,右,上,下四個方向移動一格,但是不能進入行座標和列座標的數字之和大於k的格仔。例如,當k為18時,機械人能夠進入方格 35,37 因為3 5 3 7 18。但是,它不能進入方格 35,38 因為3 5 3 8 19...
面試題13 機械人的運動範圍
地上有乙個m行n列的方格。乙個機械人從座標 0,0 的格仔開始移動,它每次可以向左 右 上 下移動一格,但不能進入行座標和列座標的數字之和大於k的格仔。例如,當k為18時,機械人能夠進入方格 35,37 因為3 5 3 7 18。但它不能進入方格 35,38 因為3 5 3 8 19,請問該機械人能...
面試題13 機械人的運動範圍
地上有乙個m行n列的方格,從座標 0,0 到座標 m 1,n 1 乙個機械人從座標 0,0 的格仔開始移動,它每次可以向左 右 上 下移動一格 不能移動到方格外 也不能進入行座標和列座標的數字之和大於k的格仔。例如,當k為18時,機械人能夠進入方格 35,37 因為3 5 3 7 18。但它不能進入...