1. 문제 링크
https://www.acmicpc.net/problem/5397
2. 문제 설명
키보드를 누른 명령어를 입력받은 후 규칙에 따라 비밀번호를 출력하는 문제입니다.
3. 소스코드
BOJ 5397번 키로거 C++ 풀이입니다.
#include <iostream>
#include <list>
using namespace std;
int main(void)
{
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int T;
list<char> l;
list<char>::iterator t;
string L;
cin >> T;
for (int i = 0; i < T; i++) {
cin >> L;
l.clear();
t = l.begin();
for (int j = 0; j < L.length(); j++) {
if (L[j] == '<' && t != l.begin()) t--;
else if (L[j] == '>' && t != l.end()) t++;
else if (L[j] == '-' && t != l.begin()) t = l.erase(--t);
else if (L[j] != '<' && L[j] != '>' && L[j] != '-') l.insert(t, L[j]);
}
for (t = l.begin(); t != l.end(); t++) cout << *t;
cout << '\n';
}
return 0;
}
string L을 for문으로 돌면서 list l에 insert하거나 erase하는 방식으로 풀었습니다.
우선, 각 케이스마다 list를 초기화해줘야 하므로 18번 라인에서 clear함수로 초기화했습니다.
iterator t는 l.begin()으로 초기화해줬지만, 현재 list가 비어있어 l.begin() == l.end()이므로 아무거나 사용해도 됩니다.
L의 길이만큼 안쪽 for문을 돌면서 각각의 케이스에 맞게 l의 iterator인 t를 움직이거나, erase하거나, insert해주면 됩니다.
이 과정이 잘 이해가 되지 않는다면 비슷한 문제인 1406번 에디터 문제를 풀어보시면 좋을 것 같습니다.
해당 문제의 제 풀이는 아래와 같습니다. https://congcoding.tistory.com/43
'Algorithm > Study' 카테고리의 다른 글
[백준 10828번 C++] 스택 (0) | 2020.05.21 |
---|---|
[백준 1919번 C++] 애너그램 만들기 (0) | 2020.05.13 |
[백준 1158번 C++] 요세푸스 문제 (0) | 2020.05.13 |
[백준 1475번 C++] 방 번호 (0) | 2020.05.13 |
[백준 13300번 C++] 방 배정 (0) | 2020.05.13 |