Problem Description
Given two strings a
and b
, return the minimum number of times you should repeat string a
so that string b
is a substring of it. If it is impossible for b
to be a substring of a
after repeating it, return -1
.
Key Insights
- The main goal is to determine how many times we need to repeat string
a
untilb
becomes a substring. - If the length of
b
is greater than the length ofa
, we may need to repeata
multiple times. - The minimum number of repeats can be estimated based on the lengths of
a
andb
. - We should also consider the case where
b
might start before the complete end of a repeateda
.
Space and Time Complexity
Time Complexity: O(n * m) where n is the length of a
and m is the length of b
.
Space Complexity: O(1) since we are using a constant amount of space.
Solution
To solve this problem, we can follow these steps:
- Calculate the minimum number of times
a
needs to be repeated to cover the length ofb
. - Construct a repeated version of
a
based on the calculated number of repeats. - Check if
b
is a substring of this repeated string. If not, repeata
one more time and check again. - If
b
is still not found, return-1
.
This approach leverages string matching techniques and ensures that we are building the repeated string efficiently.