티스토리 뷰
728x90
기억하는 알파벳이 판별할 문자열에 순서대로 들어있는지 확인하면 된다. 비슷한 문제로 15904 UCPC는 무엇의 약자일까? 가 있다.
기억하는 알파벳의 문자열을 s라 하고 판별해야 하는 문자열을 x라 하자.
s는 별개의 인덱스 idx를 가지고, x를 순서대로 탐색하면서 s[idx]=x[i]이면 idx를 증가시킨다.
idx가 s의 끝까지 간다면 모두 나온 것이니 "true"를 출력하고, 그렇지 않으면 "false"를 출력한다.
정답 코드
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <string> | |
#include <iostream> | |
using namespace std; | |
string s; | |
int main() { | |
ios_base::sync_with_stdio(false); | |
cin.tie(0); | |
int n, m; | |
cin >> n >> m; | |
cin >> s; | |
for (int i = 0; i < m; i++) { | |
string x; | |
cin >> x; | |
bool c = false; | |
for (int j = 0, idx = 0; x[j]; j++) { | |
if (x[j] == s[idx]) idx++; | |
if (idx == n) { | |
c = true; | |
break; | |
} | |
} | |
if (c) cout << "true\n"; | |
else cout << "false\n"; | |
} | |
} |
질문 및 피드백 환영합니다.
728x90
'알고리즘 > 문제 풀이' 카테고리의 다른 글
[BOJ] 백준 16719 ZOAC (2) | 2019.01.20 |
---|---|
[BOJ] 백준 2170 선 긋기 (0) | 2018.07.31 |
[BOJ] 백준 2820 자동차 공장 (0) | 2018.07.26 |
[BOJ] 백준 14268 내리 갈굼 2 (0) | 2018.07.26 |
[BOJ] 백준 14267 내리 갈굼 (0) | 2018.07.26 |