864. Shortest Path to Get All Keys
BFS + 位运算
Last updated
Was this helpful?
BFS + 位运算
Last updated
Was this helpful?
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:
Example 2:
Example 3:
Constraints:
m == grid.length
n == grid[i].length
1 <= m, n <= 30
grid[i][j]
is either an English letter, '.'
, '#'
, or '@'
.
There is exactly one '@'
in the grid.
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.
分析:
状态是 x,y,key。 因为相同坐标有Key 无key 不一样,所以需要追踪3个变量
同时key用位表示 因为需要同时track 26个字母,不是单独一个数量(a-z)
一个状态用多个元素组合而已,可以考虑使用位运算