#Lutece0852. 方老师与迷宫

方老师与迷宫

Migrated from Lutece 852 方老师与迷宫

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

方老师被困在了一个33维的迷宫中,他很想逃离这个迷宫回去玩炉石传说,你能帮助他么?

Input

多组测试数据,对于每组测试数据,有三个整数 LL,RR,CC0<l,r,c300 < l , r , c\leq 30)。

LL代表迷宫的高度,RRCC分别代表每一层的行和列。

接下来是LLR×CR\times C的矩阵,矩阵包含44种字符(S,E,.,#),S代表方老师的初始位置,E代表出口,#代表障碍。.代表能通过的地方。

每一层之后有一个空行。

L=R=C=0L=R=C=0时,数据中断。

Output

如果可以逃离迷宫,按下列格式输出最短时间:

Escaped in x minute(s). (xx表示逃离迷宫的最短时间)

否则,输出:

Trapped!

Samples

3 4 5
S....
.###.
.##..
###.#

#####
#####
##.##
##...

#####
#####
#.###
####E

1 3 3
S##
#E#
###

0 0 0
Escaped in 11 minute(s).
Trapped!

Resources

2014 UESTC Training for Search Algorithm