题目描述:
Given a robot cleaner in a room modeled as a grid.
Each cell in the grid can be empty or blocked.
The robot cleaner with 4 given APIs can move forward, turn left or turn right. Each turn it made is 90 degrees.
When it tries to move into a blocked cell, its bumper sensor detects the obstacle and it stays on the current cell.
Design an algorithm to clean the entire room using only the 4 given APIs shown below.
interface Robot {
// returns true if next cell is open and robot moves into the cell.
// returns false if next cell is obstacle and robot stays on the current cell.
boolean move();
// Robot will stay on the same cell after calling turnLeft/turnRight.
// Each turn will be 90 degrees.
void turnLeft();
void turnRight();
// Clean the current cell.
void clean();
}
Example:
Input:
room = [
[1,1,1,1,1,0,1,1],
[1,1,1,1,1,0,1,1],
[1,0,1,1,1,1,1,1],
[0,0,0,1,0,0,0,0],
[1,1,1,1,1,1,1,1]
],
row = 1,
col = 3
Explanation:
All grids in the room are marked by either 0 or 1.
0 means the cell is blocked, while 1 means the cell is accessible.
The robot initially starts at the position of row=1, col=3.
From the top left corner, its position is one row below and three columns right.
Notes:
1. The input is only given to initialize the room and the robot's position internally. You must solve this problem "blindfolded". In other words, you must control the robot using only the mentioned 4 APIs, without knowing the room layout and the initial robot's position.
2. The robot's initial position will always be in an accessible cell.
3. The initial direction of the robot will be facing up.
4. All accessible cells are connected, which means the all cells marked as 1 will be accessible by the robot.
5. Assume all four edges of the grid are all surrounded by wall.
/**
* // 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:
void cleanRoom(Robot& robot) {
if(visited.count({x,y})) return;
visited.insert({x,y});
robot.clean();
for(int i=0;i<4;i++)
{
// 沿当前的方向走一格
if(robot.move())
{
// 如果能走通,修改x,y坐标
x+=dir[cur_dir].first;
y+=dir[cur_dir].second;
cleanRoom(robot);
// 沿当前方向走了一格之后,需要回到之前的位置遍历其他方向
// 先让方向反向,再移动一格,从而回到之前的位置
robot.turnRight();
robot.turnRight();
robot.move();
// 调整机器人回到之前的方向
robot.turnRight();
robot.turnRight();
// 已经回到之前的位置,修改机器人坐标
x-=dir[cur_dir].first;
y-=dir[cur_dir].second;
}
// 已经在之前的位置,换一个方向
robot.turnRight();
cur_dir=(cur_dir+1)%4;
}
}
private:
set<pair<int,int>> visited;
int x=0;
int y=0;
vector<pair<int,int>> dir{{0,1},{1,0},{0,-1},{-1,0}};
int cur_dir=0; // 0,1,2,3分别表示上,右,下,左, cur_dir+1表示向右转90度
}