LeetCode 489. Robot Room Cleaner

dfs的问题,第一眼看上去不难,但是由于地图和位置信息都是不可知的,这导致 dfs 的时候坐标无从下手,同样判断是否访问过的 visited 也不好处理 。

本题的关键点在于,如何构建构建坐标系。令当前坐标为坐标原点,记录当前的方向,这样我们就能知道我们每次 move 以后的正确坐标了。然后就是标准dfs,有一点要注意的是,每次回溯的时候机器人要归位。

/**
 * // This is the robot's control interface.
 * // You should not implement it, or speculate about its implementation
 * class Robot {
 *   public:
 *     // Returns true if the cell in front is open and robot moves into the cell.
 *     // Returns false if the cell in front is blocked and robot stays in the current cell.
 *     bool move();
 *
 *     // Robot will stay in the same cell after calling turnLeft/turnRight.
 *     // Each turn will be 90 degrees.
 *     void turnLeft();
 *     void turnRight();
 *
 *     // Clean the current cell.
 *     void clean();
 * };
 */
class Solution {
public:
    vector<vector<int>> dirs={{-1,0},{0,1},{1,0},{0,-1}}; // up right down left
    unordered_map<int,unordered_map<int,bool>> visited; // visited[x][y]
    
    void cleanRoom(Robot& robot) {
        dfs(robot,0,0,0);
    }
    
    void dfs(Robot &robot, int i, int j, int dir){
        if (visited[i][j]) return;
        //cout << x << ' ' << y << endl;
        robot.clean(); visited[i][j]=true;
        
        for (int k=0;k<4;++k){
            if (robot.move()){
                dfs(robot,i+dirs[dir][0],j+dirs[dir][1],dir);
                robot.turnRight();
                robot.turnRight();
                robot.move();
                robot.turnRight();
                robot.turnRight();
            }
            robot.turnRight();
            dir = (dir+1)%4;
        }
    }
};

 

转载于:https://www.cnblogs.com/hankunyan/p/11462805.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值