-
Notifications
You must be signed in to change notification settings - Fork 1
/
FindSubstring.go
67 lines (65 loc) · 1.67 KB
/
FindSubstring.go
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
64
65
66
67
package string
//给定一个字符串 s 和一些 长度相同 的单词 words 。找出 s 中恰好可以由 words 中所有单词串联形成的子串的起始位置。
//
//注意子串要与 words 中的单词完全匹配,中间不能有其他字符 ,但不需要考虑 words 中单词串联的顺序。
//
//
//
//示例 1:
//
//输入:s = "barfoothefoobarman", words = ["foo","bar"]
//输出:[0,9]
//解释:
//从索引 0 和 9 开始的子串分别是 "barfoo" 和 "foobar" 。
//输出的顺序不重要, [9,0] 也是有效答案。
//示例 2:
//
//输入:s = "wordgoodgoodgoodbestword", words = ["word","good","best","word"]
//输出:[]
//示例 3:
//
//输入:s = "barfoofoobarthefoobarman", words = ["bar","foo","the"]
//输出:[6,9,12]
//
//
//提示:
//
//1 <= s.length <= 104
//s 由小写英文字母组成
//1 <= words.length <= 5000
//1 <= words[i].length <= 30
//words[i] 由小写英文字母组成
//
//来源:力扣(LeetCode)
//链接:https://leetcode.cn/problems/substring-with-concatenation-of-all-words
//著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
//就这?居然过了?
func findSubstring(s string, words []string) []int {
wordSize := len(words[0])
n := wordSize * len(words)
if len(s) < n {
return []int{}
}
mp1 := make(map[string]int)
for _, word := range words {
mp1[word]++
}
res := make([]int, 0)
for i := 0; i <= len(s)-n; i++ {
mp2 := make(map[string]int)
l := i
r := i + n
for l < r {
sub := s[l : l+wordSize]
if mp1[sub] <= mp2[sub] {
break
}
mp2[sub]++
l += wordSize
}
if l == r {
res = append(res, i)
}
}
return res
}