题解 | #机器人的运动范围#

机器人的运动范围

https://www.nowcoder.com/practice/6e5207314b5241fb83f2329e89fdecc8

#include <vector>
class Solution 
{
public:
    int sum(int n)
    {
        int sum = 0;
        while(n)
        {
            sum += n%10;
            n /= 10;
        }
        return sum;
    }

    bool maxCount(int& threshold, int& rows, int& cols,vector<vector<bool>> &dp,int i,int j,int& max)
    {
        if(i < 0 || i >= rows || j < 0 || j >= cols || dp[i][j] || threshold < sum(i) + sum(j))
            return false;
        max++;
        dp[i][j] = true;

        int w[2][4] = {{0,1,0,-1},{1,0,-1,0}};

        int x,y;
        for(int k = 0;k < 4;k++)
        {
            x = i + w[0][k],y = j + w[1][k];
            if(maxCount(threshold,rows,cols,dp,x,y,max))
                return true;
        }

        return false;
    }

    int movingCount(int threshold, int rows, int cols) 
    {
        vector<vector<bool>> dp(rows,vector<bool>(cols,false));//记录格子是否走过
        int max = 0;

       maxCount(threshold,rows,cols,dp,0,0,max);
        return max;
    }
};

全部评论

相关推荐

粗心的雪碧不放弃:纯学历问题,我这几个月也是一直优化自己的简历,后来发现优化到我自己都觉得牛逼的时候,发现面试数量也没有提升,真就纯学历问题
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务