mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-24 08:28:48 +00:00
P1241 括号序列
R43144924
This commit is contained in:
parent
0ee0a08c04
commit
b37c8f2460
47
problem/P1241/P1241.cpp
Normal file
47
problem/P1241/P1241.cpp
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
#include <bits/stdc++.h>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
char b[105];
|
||||||
|
int n;
|
||||||
|
string s;
|
||||||
|
stack<int> st;
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
cin >> s;
|
||||||
|
for (int i = 0; i < s.size(); i++) {
|
||||||
|
if (s[i] == '(') {
|
||||||
|
st.push(i);
|
||||||
|
b[i] = ')';
|
||||||
|
}
|
||||||
|
if (s[i] == '[') {
|
||||||
|
st.push(i);
|
||||||
|
b[i] = ']';
|
||||||
|
}
|
||||||
|
if (s[i] == ')' || s[i] == ']') {
|
||||||
|
if (st.empty() || b[st.top()] != s[i]) {
|
||||||
|
if (s[i] == ')') {
|
||||||
|
b[i] = '(';
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
b[i] = '[';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
b[st.top()] = ' ';
|
||||||
|
st.pop();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (int i = 0; i < s.size(); i++) {
|
||||||
|
if (b[i] == '(' || b[i] == '[') {
|
||||||
|
cout << b[i];
|
||||||
|
}
|
||||||
|
cout << s[i];
|
||||||
|
if (b[i] == ')' || b[i] == ']') {
|
||||||
|
cout << b[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cout << endl;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user