mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 14:18:47 +00:00
parent
50fb86cd78
commit
a503db7bf7
@ -4,19 +4,19 @@ using namespace std;
|
||||
|
||||
int n, p;
|
||||
string s;
|
||||
stack<pair<char, int>> st;
|
||||
stack<int> st;
|
||||
|
||||
int main() {
|
||||
cin >> n >> p >> s;
|
||||
s = ' ' + s;
|
||||
for (int i = 1; i < s.size(); i++) {
|
||||
if (s[i] == '{') {
|
||||
st.push(make_pair(s[i], i));
|
||||
} else if (st.top().second == p) {
|
||||
st.push(i);
|
||||
} else if (st.top() == p) {
|
||||
cout << i << endl;
|
||||
exit(0);
|
||||
} else if (i == p) {
|
||||
cout << st.top().second << endl;
|
||||
cout << st.top() << endl;
|
||||
exit(0);
|
||||
} else {
|
||||
st.pop();
|
||||
|
@ -4,19 +4,19 @@ using namespace std;
|
||||
|
||||
int n, p;
|
||||
string s;
|
||||
stack<pair<char, int>> st;
|
||||
stack<int> st;
|
||||
|
||||
int main() {
|
||||
cin >> n >> p >> s;
|
||||
s = ' ' + s;
|
||||
for (int i = 1; i < s.size(); i++) {
|
||||
if (s[i] == '{') {
|
||||
st.push(make_pair(s[i], i));
|
||||
} else if (st.top().second == p) {
|
||||
st.push(i);
|
||||
} else if (st.top() == p) {
|
||||
cout << i << endl;
|
||||
exit(0);
|
||||
} else if (i == p) {
|
||||
cout << st.top().second << endl;
|
||||
cout << st.top() << endl;
|
||||
exit(0);
|
||||
} else {
|
||||
st.pop();
|
||||
|
Loading…
Reference in New Issue
Block a user