atcoder#AGC028A. [AGC028A] Two Abbreviations

[AGC028A] Two Abbreviations

Score : 300300 points

Problem Statement

You are given a string SS of length NN and another string TT of length MM. These strings consist of lowercase English letters.

A string XX is called a good string when the following conditions are all met:

  • Let LL be the length of XX. LL is divisible by both NN and MM.
  • Concatenating the 11-st, (LN+1)(\frac{L}{N}+1)-th, (2×LN+1)(2 \times \frac{L}{N}+1)-th, ......, ((N1)×LN+1)((N-1)\times\frac{L}{N}+1)-th characters of XX, without changing the order, results in SS.
  • Concatenating the 11-st, (LM+1)(\frac{L}{M}+1)-th, (2×LM+1)(2 \times \frac{L}{M}+1)-th, ......, ((M1)×LM+1)((M-1)\times\frac{L}{M}+1)-th characters of XX, without changing the order, results in TT.

Determine if there exists a good string. If it exists, find the length of the shortest such string.

Constraints

  • 1N,M1051 \leq N,M \leq 10^5
  • SS and TT consist of lowercase English letters.
  • S=N|S|=N
  • T=M|T|=M

Input

Input is given from Standard Input in the following format:

NN MM

SS

TT

Output

If a good string does not exist, print -1; if it exists, print the length of the shortest such string.

3 2
acp
ae
6

For example, the string accept is a good string. There is no good string shorter than this, so the answer is 66.

6 3
abcdef
abc
-1
15 9
dnsusrayukuaiia
dujrunuma
45