eolymp
bolt
Попробуйте наш новый интерфейс для отправки задач
Задачи

The Morning after Halloween

The Morning after Halloween

You are working for an amusement park as an operator of an obakeyashiki, or a haunted house, in which guests walk through narrow and dark corridors. The house is proud of their lively ghosts, which are actually robots remotely controlled by the operator, hiding here and there in the corridors. One morning, you found that the ghosts are not in the positions where they are supposed to be. Ah, yesterday was Halloween. Believe or not, paranormal spirits have moved them around the corridors in the night. You have to move them into their right positions before guests come. Your manager is eager to know how long it takes to restore the ghosts. In this problem, you are asked to write a program that, given a floor map of a house, finds the smallest number of steps to move all ghosts to the positions where they are supposed to be. A floor consists of a matrix of square cells. A cell is either a wall cell where ghosts cannot move into or a corridor cell where they can. At each step, you can move any number of ghosts simultaneously. Every ghost can either stay in the current cell, or move to one of the corridor cells in its 4-neighborhood (i.e. immediately left, right, up or down), if the ghosts satisfy the following conditions: \begin{enumerate} \item No more than one ghost occupies one position at the end of the step. \item No pair of ghosts exchange their positions one another in the step. \end{enumerate} For example, suppose ghosts are located as shown in the following (partial) map, where a sharp sign ('\textbf{#}') represents a wall cell and '\textbf{a}', '\textbf{b}', and '\textbf{c}' ghosts. \includegraphics{https://static.e-olymp.com/content/2d/2de8654e55725089b312b0f88de5abb30d5b28cc.jpg} The following four maps show the only possible positions of the ghosts after one step. \includegraphics{https://static.e-olymp.com/content/fb/fb0c726b382b022580a0978af2219477784a95d0.jpg} \InputFile The input consists of at most \textbf{10} datasets, each of which represents a floor map of a house. The format of a dataset is as follows. \textbf{w h n} \textbf{c_11 c_12 ... c_1w} \textbf{c_21 c_22 ... c_2w} \textbf{... ... ... ...} \textbf{c_\{h1 \}c_h2 ... c_hw} \textbf{w}, \textbf{h} and \textbf{n} in the first line are integers, separated by a space. \textbf{w} and \textbf{h} are the floor width and height of the house, respectively. \textbf{n} is the number of ghosts. They satisfy the following constraints. \textbf{4} ≤ \textbf{w} ≤ \textbf{16}, \textbf{4} ≤ \textbf{h} ≤ \textbf{16}, \textbf{1} ≤ \textbf{n} ≤ \textbf{3} Subsequent \textbf{h} lines of w characters are the floor map. Each of \textbf{c_ij} is either: \begin{itemize} \item a '\textbf{#}' representing a wall cell, \item a lowercase letter representing a corridor cell which is the initial position of a ghost, \item \textbf{a_n} uppercase letter representing a corridor cell which is the position where the ghost corresponding to its lowercase letter is supposed to be, or \item a space representing a corridor cell that is none of the above. \end{itemize} In each map, each of the first \textbf{n} letters from a and the first \textbf{n} letters from \textbf{A} appears once and only once. Outermost cells of a map are walls; i.e. all characters of the first and last lines are sharps; and the first and last characters on each line are also sharps. All corridor cells in a map are connected; i.e. given a corridor cell, you can reach any other corridor cell by following corridor cells in the \textbf{4}-neighborhoods. Similarly, all wall cells are connected. Any \textbf{2}×\textbf{2} area on any map has at least one sharp. You can assume that every map has a sequence of moves of ghosts that restores all ghosts to the positions where they are supposed to be. The last dataset is followed by a line containing three zeros separated by a space. \OutputFile For each dataset in the input, one line containing the smallest number of steps to restore ghosts into the positions where they are supposed to be should be output. An output line should not contain extra characters such as spaces.
Лимит времени 15 секунд
Лимит использования памяти 64 MiB
Входные данные #1
5 5 2 
##### 
#A#B# 
#   # 
#b#a# 
##### 
16 4 3 
################ 
## ########## ## 
#    ABCcba    # 
################ 
16 16 3 
################
### ##    #   ##
##  #  ##   # c#
#  ## ########b#
# ##  # #   #  #
#  # ##   # # ##
##  a#  # # #  #
### ## #### ## # 
##   #   #  #  #
#  ##### # ## ## 
####   #B# #   # 
##  C#   #   ### 
#  # # ####### # 
# ######  A##  # 
#        #    ## 
################ 
0 0 0
Выходные данные #1
7
36
77
Источник ACM ICPC Japan Regional 2007