forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
substringWithConcatenationOfAllWords.cpp
109 lines (94 loc) · 2.88 KB
/
substringWithConcatenationOfAllWords.cpp
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// Source : https://oj.leetcode.com/problems/substring-with-concatenation-of-all-words/
// Author : Hao Chen
// Date : 2014-08-24
/**********************************************************************************
*
* You are given a string, S, and a list of words, L, that are all of the same length.
* Find all starting indices of substring(s) in S that is a concatenation of each word
* in L exactly once and without any intervening characters.
*
* For example, given:
* S: "barfoothefoobarman"
* L: ["foo", "bar"]
*
* You should return the indices: [0,9].
* (order does not matter).
*
*
**********************************************************************************/
#include <iostream>
#include <vector>
#include <string>
#include <map>
using namespace std;
vector<int> findSubstring(string S, vector<string> &L) {
vector<int> result;
if ( S.size()<=0 || L.size() <=0 ){
return result;
}
int n = S.size(), m = L.size(), l = L[0].size();
//put all of words into a map
map<string, int> expected;
for(int i=0; i<m; i++){
if (expected.find(L[i])!=expected.end()){
expected[L[i]]++;
}else{
expected[L[i]]=1;
}
}
for (int i=0; i<l; i++){
map<string, int> actual;
int count = 0; //total count
int winLeft = i;
for (int j=i; j<=n-l; j+=l){
string word = S.substr(j, l);
//if not found, then restart from j+1;
if (expected.find(word) == expected.end() ) {
actual.clear();
count=0;
winLeft = j + l;
continue;
}
count++;
//count the number of "word"
if (actual.find(word) == actual.end() ) {
actual[word] = 1;
}else{
actual[word]++;
}
// If there is more appearance of "word" than expected
if (actual[word] > expected[word]){
string tmp;
do {
tmp = S.substr( winLeft, l );
count--;
actual[tmp]--;
winLeft += l;
} while(tmp!=word);
}
// if total count equals L's size, find one result
if ( count == m ){
result.push_back(winLeft);
string tmp = S.substr( winLeft, l );
actual[tmp]--;
winLeft += l;
count--;
}
}
}
return result;
}
int main(int argc, char**argv)
{
string s = "barfoobarfoothefoobarman";
vector<string> l;
l.push_back("foo");
l.push_back("bar");
l.push_back("foo");
vector<int> indics = findSubstring(s, l);
for(int i=0; i<indics.size(); i++){
cout << indics[i] << " ";
}
cout << endl;
return 0;
}