Imagine a haunted mansion represented as a 2D grid. Each cell in the grid can be one of the following:
.
— an empty room you can walk through#
— a wall that you cannot pass through@
— your starting position (appears exactly once)$
— the exit you need to reach (appears exactly once)a
to f
) — keys that can be picked upA
to F
) — locked doors that can only be passed if you have the matching keyYou can move one step at a time in the four cardinal directions (up, down, left, right). When you move onto a cell with a key, you automatically pick it up and can then open the corresponding door (i.e., if you pick up key a
, all doors A
become passable).
Your goal is to determine the minimum number of steps required to go from the starting position @
to the exit $
, collecting keys as necessary along the way to open doors. If it is impossible to reach the exit, your program should return -1
.
-1
if the exit cannot be reached.For the grid:
@.a#
###A
b.$B
A valid solution might determine the minimum steps to collect key a
, open door A
, pick up key b
, open door B
, and finally reach the exit $
.