-
Notifications
You must be signed in to change notification settings - Fork 0
/
P5397.cpp
53 lines (43 loc) · 1.06 KB
/
P5397.cpp
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
#include <iostream>
#include <stack>
#include <string>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int T;
cin >> T;
while(T--) {
stack<char> left;
stack<char> right;
string str;
cin >> str;
for(int i = 0; i < str.length(); i++) {
if(str[i] == '<') {
if(left.empty()) continue;
right.push(left.top());
left.pop();
} else if(str[i] == '>') {
if(right.empty()) continue;
left.push(right.top());
right.pop();
} else if(str[i] == '-') {
if(left.empty()) continue;
left.pop();
} else {
left.push(str[i]);
}
}
while (!left.empty()) {
right.push(left.top());
left.pop();
}
while (!right.empty()) {
cout << right.top();
right.pop();
}
cout << "\n";
}
return 0;
}