Skip to content

Latest commit

 

History

History

864

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

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.

Companies:
Airbnb, ByteDance

Related Topics:
Bit Manipulation, Breadth-First Search

Solution 1. BFS

// OJ: https://leetcode.com/problems/shortest-path-to-get-all-keys/
// Author: github.com/lzl124631x
// Time: O(MN)
// Space: O(MN)
class Solution {
    int getState(int x, int y, int keys) {
        return x * 10000 + y * 100 + keys;
    }
public:
    int shortestPathAllKeys(vector<string>& A) {
        int M = A.size(), N = A[0].size(), startX, startY, allLocks = 0, dirs[4][2] = {{0,1}, {0,-1}, {1,0}, {-1,0}}, step = 0;
        queue<int> q;
        for (int i = 0; i < M; ++i) {
            for (int j = 0; j < N; ++j) {
                if (A[i][j] == '@') startX = i, startY = j;
                else if (A[i][j] >= 'A' && A[i][j] <= 'F') allLocks |= (1 << (A[i][j] - 'A'));
            }
        }
        int initState = getState(startX, startY, 0);
        q.emplace(initState);
        unordered_set<int> seen{initState};
        while (q.size()) {
            int cnt = q.size();
            while (cnt--) {
                int state = q.front();
                q.pop();
                int x = state / 10000, y = state % 10000 / 100, keys = state % 100;
                if (keys == allLocks) return step;
                for (auto &[dx, dy] : dirs) {
                    int a = x + dx, b = y + dy;
                    if (a < 0 || a >= M || b < 0 || b >= N || A[a][b] == '#' || (isupper(A[a][b]) && (keys & (1 << (A[a][b] - 'A'))) == 0)) continue;
                    int newKeys = keys;
                    if (islower(A[a][b])) newKeys |= (1 << (A[a][b] - 'a'));
                    int newState = getState(a, b, newKeys);
                    if (seen.count(newState)) continue;
                    seen.insert(newState);
                    q.emplace(newState);
                }
            }
            ++step;
        }
        return -1;
    }
};