841. Keys and Rooms

Question

There are N rooms and you start in room 0. Each room has a distinct number in 0, 1, 2, …, N-1, and each room may have some keys to access the next room.

Formally, each room i has a list of keys rooms[i], and each key rooms[i][j] is an integer in [0, 1, …, N-1] where N = rooms.length. A key rooms[i][j] = v opens the room with number v.

Initially, all the rooms start locked (except for room 0).

You can walk back and forth between rooms freely.

Return true if and only if you can enter every room.

Example 1:

Input: [[1],[2],[3],[]]
Output: true
Explanation:  
We start in room 0, and pick up key 1.
We then go to room 1, and pick up key 2.
We then go to room 2, and pick up key 3.
We then go to room 3.  Since we were able to go to every room, we return true.
Example 2:

Input: [[1,3],[3,0,1],[2],[0]]
Output: false
Explanation: We can't enter the room with number 2.

Note:

  • 1 <= rooms.length <= 1000
  • 0 <= rooms[i].length <= 1000
  • The number of keys in all rooms combined is at most 3000.

Solution:

  • Method 1: BFS AC 86.66%
    class Solution {
        public boolean canVisitAllRooms(List<List<Integer>> rooms) {
            if(rooms == null || rooms.size() == 0) return false;
            int size = rooms.size();
            LinkedList<Integer> queue = new LinkedList<>();
            boolean[] visited = new boolean[size];
            queue.addAll(rooms.get(0));
            visited[0] = true;
            while(!queue.isEmpty()){
                int s = queue.size();
                for(int i = 0; i < s; i++){
                    int cur = queue.poll();
                    visited[cur] = true;
                    List<Integer> temp = rooms.get(cur);
                    for(Integer t : temp){
                        if(!visited[t])
                            queue.offer(t);
                    }
                }
            }
            for(Boolean v : visited){
                if(!v) return false;
            }
            return true;
        }
    }
    
  • Method 2: DFS AC 99.59%
    class Solution {
        boolean[] visited;
        public boolean canVisitAllRooms(List<List<Integer>> rooms) {
            if(rooms == null || rooms.size() == 0) return false;
            int size = rooms.size();
            visited = new boolean[size];
            List<Integer> room0 = rooms.get(0);
            visited[0] = true;
            for(Integer next : room0){
                dfs(rooms, 0);
            }
            for(boolean v : visited)
                if(!v) return false;
            return true;
        }
        private void dfs(List<List<Integer>> rooms, int curRoom){
            visited[curRoom] = true;
            List<Integer> nexts = rooms.get(curRoom);
            for(Integer next: nexts){
                if(!visited[next])
                    dfs(rooms, next);
            }
        }
    }