【acwing】150. 括号画家(栈)*

穿越隧道

参考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;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值