864. Shortest Path to Get All Keys

📋 Đề Bài

You are given an m x n grid grid where:

  • '.' is an empty cell.
  • '#' is a wall.
  • '@' is the starting point.
  • Lowercase letters represent keys.
  • Uppercase letters represent locks.

You start at the starting point and one move consists of walking one space in one of the four cardinal directions. You cannot walk outside the grid, or walk into a wall.

If you walk over a key, you can pick it up and you cannot walk over a lock unless you have its corresponding key.

For some 1 <= k <= 6, there is exactly one lowercase and one uppercase letter of the first k letters of the English alphabet in the grid. This means that there is exactly one key for each lock, and one lock for each key; and also that the letters used to represent the keys and locks were chosen in the same order as the English alphabet.

Return the lowest number of moves to acquire all keys. If it is impossible, return -1.

 

Example 1:

Input: grid = ["@.a..","###.#","b.A.B"]
Output: 8
Explanation: Note that the goal is to obtain all the keys not to open all the locks.

Example 2:

Input: grid = ["@..aA","..B#.","....b"]
Output: 6

Example 3:

Input: grid = ["@Aa"]
Output: -1

 

Constraints:

  • m == grid.length
  • n == grid[i].length
  • 1 <= m, n <= 30
  • grid[i][j] is either an English letter, '.', '#', or '@'.
  • The number of keys in the grid is in the range [1, 6].
  • Each key in the grid is unique.
  • Each key in the grid has a matching lock.

🧠 Thuật Toán & Kỹ Thuật

Bit Manipulation (Thao tác bit)Matrix (Ma trận)String (Chuỗi)
⏱️ Thời gian O(n²)
💾 Không gian O(n)

💻 Lời Giải

C++ 0864-shortest-path-to-get-all-keys.cpp
class Solution {
public:
    int shortestPathAllKeys(vector<string>& grid) {
        int containsKey = 0;
        int n = grid.size(), m = grid[0].size();
        
        queue<tuple<int, int, int>> mq;
        const int numKey = 6;
        bool visited[n][m][1 << numKey];
        memset(visited, false, sizeof(visited));
        
        int keys = 0;
        
        for (int i = 0; i < n; ++i) {
            for (int j = 0; j < m; ++j) {
                if (grid[i][j] == '@') {
                    mq.push({i, j, 0});
                    visited[i][j][0] = true;
                }
                
                if ('a' <= grid[i][j] and grid[i][j] <= 'f') {
                    keys++;
                }
            }
        }
        
        int dx[4] = {-1, 1, 0, 0};
        int dy[4] = {0, 0, -1, 1};
        
        int step = 0;
        
        while (!mq.empty()) {
            int size = mq.size();
            while (size--) {
                auto [x, y, mask] = mq.front();
                mq.pop();
                
                if (mask == (1 << keys) - 1) {
                    return step;
                }

                for (int i = 0; i < 4; ++i) {
                    int nx = x + dx[i];
                    int ny = y + dy[i];

                    if (0 <= nx and nx < n and 0 <= ny and ny < m and grid[nx][ny] != '#') {
                        if ('A' <= grid[nx][ny] and grid[nx][ny] <= 'F') {
                            if (!(mask & (1 << (grid[nx][ny] - 'A')))) {
                                continue;
                            }
                        }
                        
                        int newMask = mask;
                        
                        if ('a' <= grid[nx][ny] and grid[nx][ny] <= 'f') {
                            newMask |= (1 << (grid[nx][ny] - 'a'));
                        }
                        
                        if (!visited[nx][ny][newMask]) {
                            mq.push({nx, ny, newMask});
                            visited[nx][ny][newMask] = true;
                        }
                    }
                }
            }
            step += 1;
        }
        
        return -1;
    }
};