-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp30.cpp
65 lines (56 loc) · 1.51 KB
/
p30.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
#include<algorithm>
#include<vector>
#include<iostream>
#include<string>
using namespace std;
class Solution {
public:
bool check(string s,vector<string>& words) {
int wordsLen = words[0].size();
int n=words.size();
vector<bool> flag(n,true);
int i=0,cnt=n;
bool hit;
if (s.size()<n*wordsLen) return false;
while (i<s.size()) {
string t=s.substr(i,wordsLen);
//cout << "t:"<<t<<endl;
hit=false;
for (int j=0;j<n;j++)
if (flag[j] && t.compare(words[j])==0) {
flag[j]=false;
i+=wordsLen;
cnt--;
hit=true;
break;
}
if (hit==false) return false;
if (cnt==0) return true;
}
return false;
}
vector<int> findSubstring(string s, vector<string>& words) {
vector<int> res;
if (words.empty()) return res;
int len=s.size();
vector<bool> b;
for (int i=0;i<len;i++)
if (check(s.substr(i),words)) res.push_back(i);
return res;
}
};
static const auto io_sync_off = []()
{
// turn off sync
std::ios::sync_with_stdio(false);
// untie in/out streams
std::cin.tie(nullptr);
return nullptr;
}();
int main() {
vector<string> words={"foo","bar"};
auto res = Solution().findSubstring("barfoothefoobarman",words);
for (auto v:res)
cout << v <<endl;
return 0;
}