Problem hidden

ALCATRAZ3 - THE HONEYCOMB MAZE

You won the lottery tickets to visit the famous Disneyland Hong Kong with the Taarak Mehta ka Ulta Chasma family and Subramaniam Iyer gets stuck in the Honey Comb maze. He has a Phone along with him and no one else to help him out. He calls you and asks for help. Chuck the story getting into the problem now, There are N x M blocks of Honey combs in the maze and you are given a starting point. your task is to help Mr. Iyer find out whether or not he can traverse the maze and return to his original position. The constraint being that a honey comb (Block) once visited cannot be visited again. Also, he has to make a minimum of 'k' number of moves before returning to the starting point. The '.' represent the empty blocks whereas the '*' represent the blocks that can't be visited. from a block (x, y) Iyer can move only to blocks (x-1, y), (x+1, y), (x, y+1), (x, y-1). Help Mr. Iyer return to his original position.

Input

The first line of the input contains the dimensions of the maze (N × M).

Second line of the input contains 'k' as described above.

The third line denotes the coordinates of the starting point (1-n), (1-m).

The next N lines contain the description of the Nth row.

Output

Output "YES" if it's possible.

Else output "NO".

Constraints

1 ≤ N, M ≤ 100

Example

Input:
5 5
14
1 2
...**
*...*
*....
.*...
.*..*

Output:
YES

Explanation

1,2 → 2,2 → 3,2 → 3,3 → 4,3 → 5,3 → 5,4 → 4,4 → 4,5 → 3,5 → 3,4 → 2,4 → 2,3 → 1,3 → 1,2

14 moves were made. So, it is possible. Also, no blocks were repeated.


Adicionado por:Alcatraz
Data:2017-01-29
Tempo limite:0.100s-1s
Tamanho do fonte:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Linguagem permitida:Todas exceto: ASM64 CLOJURE ERL FSHARP GOSU PERL6 PY_NBC SCALA TCL
Origem:Own Problem
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.