Sponsored
Sponsored
This approach involves repeating the string a
incrementally and checking if b
becomes a substring. The minimum length of repeated a
needed should be at least equal to b
's length. Thus, start by repeating a
just enough times to get a string longer than b
and check if b
is a substring. If not, repeat a
one more time to cover scenarios where b
spans two a
's boundary.
Time Complexity: O((m + n) * n), where m
is the length of a
and n
is the length of b
. Space Complexity: O(m + n).
1public class Solution {
2 public int repeatedStringMatch(String a, String b) {
3 int m = a.length(), n = b.length();
4 int repeat = (n + m - 1) / m;
5 StringBuilder sb = new StringBuilder();
6 for (int i = 0; i <= repeat + 1; i++) {
7 if (sb.indexOf(b) != -1) return i;
8 sb.append(a);
9 }
10 return -1;
11 }
12 public static void main(String[] args) {
13 Solution solution = new Solution();
14 String a = "abcd", b = "cdabcdab";
15 System.out.println(solution.repeatedStringMatch(a, b));
16 }
17}
This code builds strings by repeating a
enough times and checks if b
is included. If not, it attempts one more repetition in case b
borders two repetitions of a
.
This approach relies on two repeated concatenations of string a
. As per the pigeonhole principle, if b
can fit within the repeated strings, it should certainly fit within two full concatenated repetitions and its prefix or suffix match.
Time Complexity: O(m * n). Space Complexity: O(m).
1#include <iostream>
#include <string>
int repeatedStringMatch(std::string a, std::string b) {
int m = a.size(), n = b.size();
int repeat = (n + m - 1) / m;
std::string doubled = a + a;
for (int i = 0; i < repeat; ++i) {
if (doubled.substr(i) + a).find(b) != std::string::npos) return i + 1;
}
return -1;
}
int main() {
std::string a = "abcd";
std::string b = "cdabcdab";
std::cout << repeatedStringMatch(a, b) << std::endl;
return 0;
}
The solution effectively utilizes the doubled string to check for presence of b
, reducing the calculations involved.