参考y总的思想。
以括号串的下标作为栈中元素。统计当前遍历字符串的下标i和栈顶元素top之间的距离。
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
string s;
stack<int> op;
int ans,res;
int main(){
cin >> s;
int len = s.size();
for(int i = 0; i < len; i++){
if(op.size()==0)
op.push(i);
else{
char c = s[op.top()];
if(c == '(' && s[i] == ')'){
// ans++;
op.pop();
}
else if(c == '{' && s[i] == '}'){
// ans++;
op.pop();
}
else if(c == '[' && s[i] == ']'){
// ans++;
op.pop();
}
else{
op.push(i);
// ans = 0;
}
}
if(op.size()) res = max(res,i - op.top());
else res = max(res, i + 1);//说明整个序列都是满足的,其实匹配的数量为len.
}
cout << res << endl;
return 0;
}
WA的代码,只过了样例
下面的代码只能满足一段左右的形式,若是(){}的形式,只能统计[(){}],而无法统计().
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
string s;
stack<char> op;
int ans,res;
int main(){
cin >> s;
ll len = s.size();
for(ll i = 0; i < len; i++){
if(i == 0 || op.size() == 0)
op.push(s[i]);
else{
if(op.top() == '(' && s[i] == ')'){
ans++;
op.pop();
}
else if(op.top() == '{' && s[i] == '}'){
ans++;
op.pop();
}
else if(op.top() == '[' && s[i] == ']'){
ans++;
op.pop();
}
else{
res = max(res,ans*2);
op.push(s[i]);
ans = 0;
}
}
}
cout << res << endl;
return 0;
}