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

机器人的运动范围

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

void DFS(int threshold, int rows, int cols, int x, int y, int visit[][101]);
int movingCount(int threshold, int rows, int cols)
{
    int visit[101][101];
    memset(visit, 0, sizeof(visit));
    int count = 0;
    DFS(threshold, rows, cols, 0, 0, visit);
    for (int i = 0; i < rows; i++)
        for (int j = 0; j < cols; j++)
            if (visit[i][j])
                count++;

    return count;
}

void DFS(int threshold, int rows, int cols, int x, int y, int visit[][101])
{
    //边界条件
    if (x < 0 || x >= rows || y < 0 || y >= cols || visit[x][y] == 1)
        return;
    int tempSum;
    tempSum = x % 10 + x / 10 + y % 10 + y / 10;
    if (tempSum <= threshold)
    {

        visit[x][y] = 1;
        DFS(threshold, rows, cols, x + 1, y, visit);
        DFS(threshold, rows, cols, x, y + 1, visit);
    }

    return;
}
全部评论

相关推荐

不愿吃饼的变色龙很感性:89k,那你得年薪1000w多
点赞 评论 收藏
分享
不愿吃饼的变色龙很感性:你是我见过牛客的第一个女生
点赞 评论 收藏
分享
有没有友友知道这样是开启下一个志愿还是在池子里等人捞
早饭有梨:为什么有的是回到人才池,有的是变成筛选中,我二面挂直接变回筛选中了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务