E - Stamp Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 475

問題文

英大文字からなる長さ N の文字列 S と、英大文字からなる長さ M\ (\leq N) の文字列 T が与えられます。

# のみからなる長さ N の文字列 X があります。 以下の操作を好きな回数行うことで、XS に一致させることができるか判定してください。

  • X の中から連続する M 文字を選び、T で置き換える。

制約

  • 1 \leq N \leq 2\times 10^5
  • 1 \leq M \leq \min(N, 5)
  • S は英大文字からなる長さ N の文字列
  • T は英大文字からなる長さ M の文字列

入力

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

N M
S
T

出力

XS に一致させることができるならば Yes を、できないならば No を出力せよ。


入力例 1

7 3
ABCBABC
ABC

出力例 1

Yes

以下、Xl 文字目から r 文字目までの部分を X[l:r] と表記します。

次のように操作を行うことで、XS に一致させることができます。

  1. X[3:5]T で置き換える。X= ##ABC## になる。 
  2. X[1:3]T で置き換える。X= ABCBC## になる。 
  3. X[5:7]T で置き換える。X= ABCBABC になる。 

入力例 2

7 3
ABBCABC
ABC

出力例 2

No

どのように操作を行っても、XS に一致させることはできません。


入力例 3

12 2
XYXXYXXYYYXY
XY

出力例 3

Yes

Score : 475 points

Problem Statement

You are given two strings: S, which consists of uppercase English letters and has length N, and T, which also consists of uppercase English letters and has length M\ (\leq N).

There is a string X of length N consisting only of the character #. Determine whether it is possible to make X match S by performing the following operation any number of times:

  • Choose M consecutive characters in X and replace them with T.

Constraints

  • 1 \leq N \leq 2\times 10^5
  • 1 \leq M \leq \min(N, 5)
  • S is a string consisting of uppercase English letters with length N.
  • T is a string consisting of uppercase English letters with length M.

Input

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

N M
S
T

Output

Print Yes if it is possible to make X match S; print No otherwise.


Sample Input 1

7 3
ABCBABC
ABC

Sample Output 1

Yes

Below, let X[l:r] denote the part from the l-th through the r-th character of X.

You can make X match S by operating as follows.

  1. Replace X[3:5] with T. X becomes ##ABC##.
  2. Replace X[1:3] with T. X becomes ABCBC##.
  3. Replace X[5:7] with T. X becomes ABCBABC.

Sample Input 2

7 3
ABBCABC
ABC

Sample Output 2

No

No matter how you operate, it is impossible to make X match S.


Sample Input 3

12 2
XYXXYXXYYYXY
XY

Sample Output 3

Yes