

Time Limit: 2 sec / Memory Limit: 1024 MB
問題文
縦 マス、横 マスのグリッドがあります。上から 行目、左から 列目のマスを と呼びます。
各マスには英小文字が書かれています。 に書かれている文字は です。
長さ の文字列 が与えられます。マスの列 , , , であって次の条件を満たすものは存在しますか?存在する場合はYes
を、そうでない場合は No
を出力してください。
- , , , は全て互いに異なる。
- と は 方向に隣接している。言い換えると である。
- に書かれた文字は の 文字目と一致する。
制約
- は英小文字
- は英小文字からなる長さ の文字列
入力
入力は以下の形式で標準入力から与えられる。
出力
問題文の条件を満たすマスの列が存在する場合はYes
を、そうでない場合は No
を出力せよ。
入力例 1Copy
3 3 ekz sza znz 5 snake
出力例 1Copy
Yes
マスの列 は問題文の条件を全て満たします。よって答えは Yes
です。
入力例 2Copy
2 5 qwert asdfg 4 awrg
出力例 2Copy
No
入力例 3Copy
3 3 abc zbc zzc 5 abcba
出力例 3Copy
No
Problem Statement
There is a grid with horizontal rows and vertical columns. We denote by the cell in the -th row from the top and -th column from the left.
Each cell has a lowercase English letter written on it. The letter written on is .
You are given a string of length . Is there a sequence of cells , , , that satisfies the following conditions? Print Yes
if there is, and No
otherwise.
- , , , and are pairwise distinct.
- and are adjacent in one of the eight directions. In other words, .
- The letter written on coincides with the -th character of .
Constraints
- is a lowercase English letter.
- is a length- string consisting of lowercase English letters.
Input
The input is given from Standard Input in the following format:
Output
Print Yes
if there is a conforming sequence of cells; print No
otherwise.
Sample Input 1Copy
3 3 ekz sza znz 5 snake
Sample Output 1Copy
Yes
The sequence of cells satisfies all the conditions in the problem statement, so the answer is Yes
.
Sample Input 2Copy
2 5 qwert asdfg 4 awrg
Sample Output 2Copy
No
Sample Input 3Copy
3 3 abc zbc zzc 5 abcba
Sample Output 3Copy
No