Problem C
Kinky Word Search
You’re probably familiar with regular word searches, where you’re presented with a grid of letters and a word to find. The word can be in a straight line horizontally, vertically, or diagonally (and perhaps backwards in any of those directions). For example, here is a grid of letters:
![\includegraphics[width=0.25\textwidth ]{kinky1.png}](/problems/kinkywordsearch/file/statement/en/img-0001.png)
The word “JAVA” can be found going from the bottom right corner diagonally upwards.
In a kinky word search the path that spells out
the word can have one or more “kinks” – places where the path
changes direction. For example, in the given grid you can spell
the word “PYTHON” with
![\includegraphics[width=0.25\textwidth ]{kinky2.png}](/problems/kinkywordsearch/file/statement/en/img-0002.png)
Adding kinks allows letters to be reused – the word
“CPLUSPLUS” can be found in the upper right corner of the grid
(with
Input
Input begins with a line containing two positive integers
Output
Output either the word Yes if it is
possible to spell the given word with exactly
Sample Input 1 | Sample Output 1 |
---|---|
5 5 L M E L C C A K U P D O V S Y R N L A T P G O H J 0 JAVA |
Yes |
Sample Input 2 | Sample Output 2 |
---|---|
5 5 L M E L C C A K U P D O V S Y R N L A T P G O H J 3 PYTHON |
Yes |
Sample Input 3 | Sample Output 3 |
---|---|
5 5 L M E L C C A K U P D O V S Y R N L A T P G O H J 4 PYTHON |
No |