AC [골드5]
문제 링크
https://www.acmicpc.net/problem/5430
풀이
문자열에서 숫자를 파싱 후 Reverse, Delete 명령어를 구현을 한다. 이를 자료구조의 특성을 이용해 Queue와 Stack을 써서 Reverse에 따라 어느 자료구조에서 데이터를 pop 할지 정한다.
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#include <iostream>
#include <queue>
#include <stack>
#include <string>
using namespace std;
int main(void)
{
int T;
cin >> T;
for (int t = 1; t <= T; t++)
{
int n, num;
string p, s;
queue<int> q;
stack<int> st;
cin >> p;
cin >> n;
cin >> s;
// 숫자 파싱하여 넣기
s = s.substr(1);
int idx = 0, s_idx = 0, num_start = s_idx;
while (idx < n)
{
while (s.at(s_idx) != ',' && s.at(s_idx) != ']')
{
s_idx++;
}
num = stoi(s.substr(num_start, s_idx - num_start));
num_start = s_idx + 1;
s_idx++;
q.push(num);
st.push(num);
idx++;
}
int remain = q.size();
bool qTurn = true;
for (int i = 0; i < p.size(); i++)
{
// R
if (p.at(i) == 'R')
{
qTurn = !qTurn;
}
// D
else
{
if (remain == 0)
{
remain--;
break;
}
if (qTurn)
{
q.pop();
}
else
{
st.pop();
}
remain--;
}
if (remain < 0)
{
break;
}
}
// remain 개수만큼 출력하기
if (remain < 0)
{
cout << "error\n";
}
else
{
cout << "[";
for (int i = 1; i < remain; i++)
{
if (qTurn)
{
cout << q.front() << ",";
q.pop();
}
else
{
cout << st.top() << ",";
st.pop();
}
}
// 남은 숫자가 하나인 경우
if (qTurn)
{
if (!q.empty())
cout << q.front();
}
else
{
if(!st.empty())
cout << st.top();
}
cout << "]\n";
}
}
}