forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_686.java
63 lines (58 loc) · 1.82 KB
/
_686.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.fishercoder.solutions;
import java.util.HashSet;
import java.util.Set;
/**
* 686. Repeated String Match
*
* Given two strings A and B, find the minimum number of times A has to be repeated such that B is a substring of it.
* If no such solution, return -1.
* For example, with A = "abcd" and B = "cdabcdab".
* Return 3, because by repeating A three times (“abcdabcdabcd”),
* B is a substring of it; and B is not a substring of A repeated two times ("abcdabcd").
Note:
The length of A and B will be between 1 and 10000.
*/
public class _686 {
public static class Solution1 {
public int repeatedStringMatch(String A, String B) {
Set<Character> set = new HashSet<>();
for (char c : A.toCharArray()) {
set.add(c);
}
for (char c : B.toCharArray()) {
if (!set.contains(c)) {
return -1;
}
}
StringBuilder stringBuilder = new StringBuilder(A);
for (int i = 0; i < B.length(); i++) {
if (stringBuilder.toString().contains(B)) {
return i + 1;
}
stringBuilder.append(A);
}
return -1;
}
}
public static class Solution2 {
/**
* Time: O(N(N+M))
* Space: O(N + M)
* */
public int repeatedStringMatch(String A, String B) {
int count = 1;
StringBuilder sb = new StringBuilder(A);
for (; sb.length() < B.length(); count++) {
sb.append(A);
}
if (sb.indexOf(B) >= 0) {
return count;
}
sb.append(A);
if (sb.indexOf(B) >= 0) {
return count + 1;
}
return -1;
}
}
}