SPIKES - Spiky Mazes


Jarmtin is interested in cultures and the history behind them. Of course this interest has a reason: as he studies the choivans' past he discovers the hidden entrances of mazes he knows contain valuable information. However there is a catch: the mazes contain spiky traps! Jarmtin is quite the agile type, but there is a limit to everyone, thus he will only be able to avoid a number of traps. This motivates the question can he make it through the mazes?

Input

The first line of a test case contains three integers n, m and j. n (2<=n<=40) the number of rows, m (2<=n<=40) the width of each row and j (0<=j<=20) the number of times Jarmtin can avoid spikes. Then n lines containing m characters; The character 'x' will be used for the place of the treasure, '@' for an entrance (which is also an exit), '#' for walls, '.' for a safe walking tile and 's' for spikes. Note that you cannot walk into walls and the maze is completely surrounded by walls outside what you can see. There is always at least one entrance/exit and always an x where the treasure is.

Output

You should output "SUCCESS" if Jarmtin can make it in and out alive, and "IMPOSSIBLE" if there is no way you can make it out alive.

Sample Input / Output

Example 1:

Input:
3 3 2
#@#
#s#
#x#

Output:
SUCCESS

Example 2:

Input:
4 4 3
####
@.s#
##.#
#xs#

Output:
IMPOSSIBLE

hide comments
andrewfang_21: 2017-03-26 12:42:02

This maze only contains one treasure or more?

vengatesh15: 2017-03-15 20:27:08

easy one AC in 1 go:-)

Xvamp999: 2016-12-27 14:51:48

Simple DFS :)

xalen: 2016-12-01 06:56:38

Nice backtracking :) AC

Sushovan Sen: 2016-10-21 08:42:47

@k_a_singh:
1. There is only ONE treasure.
2. No he cannot move diagonally.
3. Only ONE test case.

k_a_singh: 2016-07-03 13:00:35

Hi all, anyone, could you please give answer some questions which is not clear to me from this problem:
1- Can be more than one x (treasure) and need to collect all of them before exit the maze?
2- Can move diagonally?
3- Maximum number of test cases and where we will accept the number of test case ?

Last edit: 2016-07-03 13:09:22
abdou_93: 2015-01-01 14:49:46

weak test cases . my WA code got AC -_-

Flago: 2014-02-25 12:05:43

Took me half hour to find what was my mistake :x
!(x#@ => SUCCESS)

JordanBelfort: 2014-01-25 00:17:06

nice problem

Vipul Pandey: 2014-01-24 14:26:25

very nice problem.it is not as easy as it looks. And yes there may be more than 1 entry/exit.

Last edit: 2014-01-24 15:36:57

Added by:Laurens
Date:2013-08-10
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:Self created problem