<풀이>
1. pattern과 text를 입력받는다.
2. text내에 있는 pattern의 개수를 출력한다.
<해법>
1. 문제를 해결하는 흐름
=>
(1) 문자열에서 가장 빨리 나타나는 pattern을 찾습니다.
(2) 문자열을 pattern 뒤부터로 갱신합니다.
예를 들어, text가 "abcde..."이고 pattern이 "bc"라고 하겠습니다. text내에서 가장빨리 나타나는 패턴을 찾으면 a[bc]de... 입니다. 이후, text를 d...로 교체합니다.
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>
using namespace std;
int trash;
string text;
string pattern;
int answer;
void solution() {
int index = 0;
while (true) {
index = text.find(pattern, index);
if (index == string::npos) {
break;
}
index += pattern.length();
answer++;
}
}
int main() {
int test_case;
int T;
T = 10;
for (test_case = 1; test_case <= T; test_case++) {
//초기화
trash = 0;
text = "";
pattern = "";
answer = 0;
//입력
cin >> trash >> pattern >> text;
//해법
solution();
//출력
cout << "#" << test_case << " " << answer << "\n";
}
//종료
return 0;
}
|
문자열에 대해 알아볼 수 있는 문제였습니다.
'알고리즘 문제풀이 > SWEA' 카테고리의 다른 글
[C++] SWEA 1216 - 회문2 (0) | 2022.12.15 |
---|---|
[C++] SWEA 1215 - 회문1(2) (0) | 2022.12.15 |
[C++] SWEA 1953 - 탈주범 검거(2) (0) | 2022.12.15 |
[C++] SWEA 1949 - 등산로 조정 (0) | 2022.12.15 |
[C++] SWEA 4311 - 오래된 스마트폰 (0) | 2022.12.07 |