Given two strings a and b, return the minimum number of times you should repeat string a so that stringbis a substring of it. If it is impossible for b to be a substring of a after repeating it, return -1.
Notice: string "abc" repeated 0 times is "", repeated 1 time is "abc" and repeated 2 times is "abcabc".
Example 1:
Input: a = "abcd", b = "cdabcdab"
Output: 3
Explanation: We return 3 because by repeating a three times "abcdabcdabcd", b is a substring of it.
Example 2:
Input: a = "a", b = "aa"
Output: 2
Constraints:
1 <= a.length, b.length <= 104
a and b consist of lowercase English letters.
Intuition
Approach 1:
a = 'abcd'
b = 'cd abcd ab'
b =
a = 'abcd'
b='cd abcd ab'
b = prefix + n*a + suffix => cd (abcd) ab ==> n+2
b = prefix + n*a => cd (abcd) ==> n+1
b = n*a + suffix => (abcd) ab ==> n+1
b=n*a => (abcd) ==> n
Basically
We take lenb/lena and generate the n*a part and
Later check for other conditions by adding the strings seperately
But this npos find takes n*m time
Approach 2: Rabin Karp
Rolling hash concept
Average(m+n) case Time
Refer - Abdul Bari Video for more