剑指offer13_机器人的运动范围

2019-03-30  本文已影响0人  zhouwaiqiang

题目描述

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

解题思路

Java源代码

public class Solution {
    public int movingCount(int threshold, int rows, int cols)
    {
        if (rows<=0 || cols<=0||threshold<0) return 0;
        boolean[][] visited = new boolean[rows][cols];
        for (int i=0; i<rows; i++) {
            for (int j=0; j<cols; j++) {
                visited[i][j]=false;
            }
        }
        int result = movingCountCore(threshold, 0, 0, rows, cols, visited);
        return result;
    }
    
    private static int movingCountCore(int threshold, int row, int col,
                                       int rows, int cols, boolean[][] visited) {
        if (row<0||row>=rows||col<0||col>=cols||visited[row][col]) return 0;
        visited[row][col]=true;
        int sum = digitSum(row, col);
        if (sum > threshold) return 0;
        return 1+movingCountCore(threshold, row+1, col, rows, cols, visited)
            + movingCountCore(threshold, row-1, col, rows, cols, visited)
            + movingCountCore(threshold, row, col+1, rows, cols, visited)
            + movingCountCore(threshold, row, col-1, rows, cols, visited);
    }
    
    private static int digitSum(int a, int b) {
        int sum = 0;
        while (a!=0 || b!=0) {
            sum += a%10;
            a = a/10;
            sum += b%10;
            b = b/10;
        }
        return sum;
    }
}
上一篇 下一篇

猜你喜欢

热点阅读