Robot Room Cleaner - Problem

You are controlling a robot that is located somewhere in a room. The room is modeled as an m x n binary grid where 0 represents a wall and 1 represents an empty slot.

The robot starts at an unknown location in the room that is guaranteed to be empty, and you do not have access to the grid, but you can move the robot using the given API Robot.

You are tasked to use the robot to clean the entire room (i.e., clean every empty cell in the room). The robot with the four given APIs can move forward, turn left, or turn right. Each turn is 90 degrees.

When the robot tries to move into a wall cell, its bumper sensor detects the obstacle, and it stays on the current cell.

Design an algorithm to clean the entire room using the following APIs:

Interface Robot:

  • boolean move() - 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.
  • void turnLeft() - Robot will stay on the same cell after calling turnLeft/turnRight. Each turn will be 90 degrees.
  • void turnRight() - Robot will stay on the same cell after calling turnLeft/turnRight. Each turn will be 90 degrees.
  • void clean() - Clean the current cell.

Note: The initial direction of the robot will be facing up. You can assume all four edges of the grid are all surrounded by a wall.

Input & Output

Example 1 — Small Room
$ 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
Output: Robot cleans all reachable cells
💡 Note: Robot starts at (1,3) and systematically visits all connected empty cells using DFS backtracking
Example 2 — Single Cell
$ Input: room = [[1]], row = 0, col = 0
Output: Robot cleans the only cell
💡 Note: Trivial case: robot cleans current cell, no moves possible, algorithm terminates
Example 3 — L-shaped Room
$ Input: room = [[1,1,0],[1,1,1],[0,0,1]], row = 0, col = 0
Output: Robot cleans all 5 reachable cells
💡 Note: Robot navigates L-shape by exploring all directions and backtracking when blocked

Constraints

  • m == room.length
  • n == room[i].length
  • 1 ≤ m, n ≤ 100
  • room[i][j] is either 0 or 1
  • All the empty cells can be visited from the starting position

Visualization

Tap to expand
Robot Room Cleaner INPUT Room Grid (5x8) Empty (1) Wall (0) Robot row = 1, col = 3 Initial direction: UP API: move, turn, clean Robot starts at unknown cell No direct grid access Use DFS exploration ALGORITHM (DFS) 1 Clean Current Cell Mark visited, call clean() 2 Try All 4 Directions Up, Right, Down, Left 3 Move if Possible If move() true + unvisited 4 Backtrack Turn 180, move, turn 180 DFS Backtracking Pattern visited set tracks (x,y) Relative coordinates from start FINAL RESULT All Reachable Cells Cleaned Cleaned Unreachable Output: Robot cleans all reachable cells [OK] Statistics: Cells cleaned: 28 (connected) Unreachable: 4 (blocked by wall) Key Insight: Use DFS with backtracking: explore all 4 directions from each cell, track visited cells using relative coordinates (since absolute position unknown). Backtrack by turning 180 degrees, moving back, then turning 180 again to restore original orientation. Time: O(N-M) where N=cells, M=walls. TutorialsPoint - Robot Room Cleaner | DFS Backtracking Approach
Asked in
Facebook 45 Google 38 Amazon 25 Microsoft 20
185.0K Views
Medium Frequency
~35 min Avg. Time
2.5K Likes
Ln 1, Col 1
Smart Actions
💡 Explanation
AI Ready
💡 Suggestion Tab to accept Esc to dismiss
// Output will appear here after running code
Code Editor Closed
Click the red button to reopen