문제 확인
스트링에서 패턴 스트링을 찾는 문제는 대부분 kmp 알고리즘으로 풀 수 있습니다.
풀이
kmp 알고리즘을 그대로 적용하면 풀리는 문제입니다.
코드
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
|
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
void fail_func(vector<int> &fail, string &s) {
int n = s.length();
for (int i = 1, m = 0; i < n; ++i) {
if (s[i] == s[m])
fail[i] = ++m;
else if (m != 0) {
--i;
m = fail[m - 1];
}
}
}
vector<int> kmp(string &str, string &p) {
int str_len = str.length(), p_len = p.length();
vector<int> res, fail(p_len);
fail_func(fail, p);
for (int i = 0, m = 0; i < str_len; ++i) {
if (str[i] == p[m]) {
if (++m == p_len)
res.push_back(i - p_len + 1);
}
else if (m != 0) {
--i;
m = fail[m - 1];
}
}
return res;
}
int main() {
cin.tie(NULL); cout.tie(NULL);
ios::sync_with_stdio(false);
string str, p;
getline(cin, str);
getline(cin, p);
auto res = kmp(str, p);
cout << res.size() << '\n';
for (int t : res) {
cout << t + 1 << ' ';
}
}
|
cs |
반응형
'알고리즘 문제 > [백준]' 카테고리의 다른 글
[백준] 1662 압축 (0) | 2021.03.04 |
---|---|
[백준] 1937 욕심쟁이 판다 (0) | 2021.03.04 |
[백준] 1298 노트북의 주인을 찾아서 (0) | 2021.02.22 |
[백준] 14245 XOR (0) | 2021.02.22 |
[백준] 1915 가장 큰 정사각형 (0) | 2021.02.22 |