G - Find the Snaky Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

問題文

HH マス、横 WW マスのグリッドがあります。上から ii 行目、左から jj 列目のマスを (i,j)(i, j) と呼びます。
各マスには英小文字が書かれています。(i,j)(i, j) に書かれている文字は Gi,jG_{i, j} です。
長さ NN の文字列 SS が与えられます。マスの列 (a1,b1)(a_1, b_1), (a2,b2)(a_2, b_2), \dots, (aN,bN)(a_N, b_N) であって次の条件を満たすものは存在しますか?存在する場合はYes を、そうでない場合は No を出力してください。

  • (a1,b1)(a_1, b_1), (a2,b2)(a_2, b_2), \dots, (aN,bN)(a_N, b_N) は全て互いに異なる。
  • (ai,bi)(a_i, b_i)(ai+1,bi+1)(a_{i+1}, b_{i+1})88 方向に隣接している。言い換えると max(aiai+1,bibi+1)=1\max(\vert a_i - a_{i+1} \vert, \vert b_i - b_{i+1} \vert) = 1 である。
  • (ai,bi)(a_i, b_i) に書かれた文字は SSii 文字目と一致する。

制約

  • 1H,W101 \leq H, W \leq 10
  • Gi,jG_{i, j} は英小文字
  • 1N51 \leq N \leq 5
  • SS は英小文字からなる長さ NN の文字列

入力

入力は以下の形式で標準入力から与えられる。

HH WW
G1,1G1,2G1,WG_{1,1}G_{1,2}\dots G_{1,W}
G2,1G2,2G2,WG_{2,1}G_{2,2}\dots G_{2,W}
\vdots
GH,1GH,2GH,WG_{H,1}G_{H,2}\dots G_{H,W}
NN
SS

出力

問題文の条件を満たすマスの列が存在する場合はYes を、そうでない場合は No を出力せよ。


入力例 1Copy

Copy
3 3
ekz
sza
znz
5
snake

出力例 1Copy

Copy
Yes

マスの列 (2,1),(3,2),(2,3),(1,2),(1,1)(2, 1), (3, 2), (2, 3), (1, 2), (1, 1) は問題文の条件を全て満たします。よって答えは Yes です。


入力例 2Copy

Copy
2 5
qwert
asdfg
4
awrg

出力例 2Copy

Copy
No

入力例 3Copy

Copy
3 3
abc
zbc
zzc
5
abcba

出力例 3Copy

Copy
No

Problem Statement

There is a grid with HH horizontal rows and WW vertical columns. We denote by (i,j)(i,j) the cell in the ii-th row from the top and jj-th column from the left.
Each cell has a lowercase English letter written on it. The letter written on (i,j)(i, j) is Gi,jG_{i, j}.
You are given a string SS of length NN. Is there a sequence of cells (a1,b1)(a_1, b_1), (a2,b2)(a_2, b_2), \dots, (aN,bN)(a_N, b_N) that satisfies the following conditions? Print Yes if there is, and No otherwise.

  • (a1,b1)(a_1, b_1), (a2,b2)(a_2, b_2), \dots, and (aN,bN)(a_N, b_N) are pairwise distinct.
  • (ai,bi)(a_i, b_i) and (ai+1,bi+1)(a_{i+1}, b_{i+1}) are adjacent in one of the eight directions. In other words, max(aiai+1,bibi+1)=1\max(\vert a_i - a_{i+1} \vert, \vert b_i - b_{i+1} \vert) = 1.
  • The letter written on (ai,bi)(a_i, b_i) coincides with the ii-th character of SS.

Constraints

  • 1H,W101 \leq H, W \leq 10
  • Gi,jG_{i, j} is a lowercase English letter.
  • 1N51 \leq N \leq 5
  • SS is a length-NN string consisting of lowercase English letters.

Input

The input is given from Standard Input in the following format:

HH WW
G1,1G1,2G1,WG_{1,1}G_{1,2}\dots G_{1,W}
G2,1G2,2G2,WG_{2,1}G_{2,2}\dots G_{2,W}
\vdots
GH,1GH,2GH,WG_{H,1}G_{H,2}\dots G_{H,W}
NN
SS

Output

Print Yes if there is a conforming sequence of cells; print No otherwise.


Sample Input 1Copy

Copy
3 3
ekz
sza
znz
5
snake

Sample Output 1Copy

Copy
Yes

The sequence of cells (2,1),(3,2),(2,3),(1,2),(1,1)(2, 1), (3, 2), (2, 3), (1, 2), (1, 1) satisfies all the conditions in the problem statement, so the answer is Yes.


Sample Input 2Copy

Copy
2 5
qwert
asdfg
4
awrg

Sample Output 2Copy

Copy
No

Sample Input 3Copy

Copy
3 3
abc
zbc
zzc
5
abcba

Sample Output 3Copy

Copy
No


2025-04-05 (Sat)
00:55:09 +00:00