Notice
Recent Posts
Recent Comments
Link
할껀하고놀자
[백준] 1786번 찾기 (KMP 알고리즘) 본문
728x90
- KMP 알고리즘에 대한 공부를 끝마치고 문제를 풀기 위해 찾아봤더니 바로 적용할 수 있는 문제가 있었다.
https://www.acmicpc.net/problem/1786
- KMP 알고리즘만 알고 있다면 별로 어렵지 않게 풀 수 있었다.
- 처음 풀때 시간초과가 났는데 endl --> "\n" 을 해주어야 시간초과가 나지 않는다..
#include<iostream>
#include<vector>
#include<string>
#include<stdio.h>
using namespace std;
vector<int> answer;
int countt;
vector<int> makeTable(string pattern) {
int patternSize = pattern.length();
vector<int> table(patternSize, 0);
int j = 0;
for (int i = 1; i < patternSize; i++) {
while (j > 0 && pattern[i] != pattern[j]) {
j = table[j - 1];
}
if (pattern[i] == pattern[j]) {
table[i] = ++j;
}
}
return table;
}
void KMP(string parent, string pattern) {
vector<int> table = makeTable(pattern);
int parentSize = parent.size();
int patternSize = pattern.size();
int j = 0;
for (int i = 0; i < parentSize; i++) {
while (j > 0 && parent[i] != pattern[j]) {
j = table[j - 1];
}
if (parent[i] == pattern[j]) {
if (j == patternSize - 1) {
countt++;
answer.push_back(i - patternSize + 2);
//printf_s("%d", i - patternSize + 2);
j = table[j];
}
else {
j++;
}
}
}
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
string parent, pattern;
countt = 0;
getline(cin, parent);
getline(cin, pattern);
KMP(parent, pattern);
cout << countt << "\n";
for (int i = 0; i < answer.size(); i++) {
cout << answer[i] << "\n";
}
return 0;
}
'[IT] > 백준' 카테고리의 다른 글
[백준] 10953 A+B-6 (구분자가 주어졌을 때 계산하기) (0) | 2019.09.09 |
---|---|
[백준] 10951 A+B-4 (테스트케이스가 안주어졌을 때) (0) | 2019.09.09 |
[백준] 9012번 괄호 (0) | 2019.08.14 |
[백준] 17143번 낚시왕 (0) | 2019.06.11 |
[백준] 11365번 !밀비 급일 (0) | 2019.06.10 |
Comments