Hide

Problem L
Lost On Campus

/problems/mines22.lostoncampus/file/statement/en/img-0001.jpg
Photo by qimono. Retrieved from Pixabay. Pixabay License. Source

You were wandering around the campus at Colorado School of Mines, but you ended up getting lost in some building that you don’t recognize. To get out, you’ll need to traverse the corridors of the building until you find an exit.

Luckily, while wandering, you’re able to find a map of the building that shows you the floor plan (your input). Now you can find a way out!

There’s just one problem, however: you have a tragic fear of doors. On the way out of the building, you’ll want to go through as few doors as possible.

Given the floor plan of the building, what is the fewest doors you can go through while still reaching an exit?

Input

The first line of your input will contain two integers: $W$ and $H$, representing the width and height, respectively, of the map. For all inputs, $3 \leq W \leq 100$ and $3 \leq H \leq 100$.

The following $H$ lines will each contain $W$ characters, representing the map. The map itself uses the following characters to represent each object:

. (period)

Floor

# (pound sign)

Wall

D (upper-case D)

Door

E (upper-case E)

Exit

* (asterisk)

Starting Point (You are here!)

When traversing the map, you can only move from a given tile to its four adjacent tiles: up, down, left, and right.

Additionally, each map will have walls along every edge, and there can be several different exits in the map, which may or may not be adjacent to the edges of the map.

Output

Your output should be a single integer, representing the fewest doors you can go through while still reaching an exit. Also note that going through an exit does not count as going through a door.

If it is impossible to navigate to an exit, output “NOT POSSIBLE”.

Sample Input 1 Sample Output 1
9 12
#########
#E..D.###
#...#.###
#####.###
#.....###
#D#.#D###
#D#D#.#E#
#D#D#.#.#
#.....#D#
#..*..DD#
#.....###
#########
2
Sample Input 2 Sample Output 2
9 10
#########
#...E..D#
#########
#.D....D#
###.*.###
###D.####
####.####
#E.###..#
#.......#
#########
NOT POSSIBLE
Sample Input 3 Sample Output 3
8 8
########
###....#
###E.D.#
#.*##D##
#..##D##
#..DD.##
#..#####
########
5

Please log in to submit a solution to this problem

Log in