C. Longest Regular Bracket Sequence

链接

[https://codeforces.com/problemset/problem/5/C]

题意

给一个括号序列,让你找最长合法括号序列,
并输出该长度有多少个

分析

用栈存左括号,一旦遇到右括号就看栈有没有左括号有就标记这两个位置为合法位置。并出栈一个左括号
最后找最长连续的合法位置即可

代码

#include<bits/stdc++.h>
using namespace std;
#define ll long long
const int N=1e6+10;
int a[N];
string s;
void solve(){
    memset(a,0,sizeof(a));
    int n=s.length();
    stack<int> st;
    for(int i=0;i<n;i++)
    if(s[i]=='(')
    st.push(i);
    else{
        if(!st.empty()){
            a[i]=1;
            a[st.top()]=1;
            st.pop();
        }
    }
    
    int ma=0,cnt=1,al=0;
    for(int i=0;i<n;i++)
    {
        if(a[i])
        al++;
        else{
            al=0;
        }
        if(al==ma&&ma!=0)
        cnt++;
        else if(al>ma)
        {
            ma=al;
            cnt=1;
        }
    }
    cout<<ma<<' '<<cnt<<endl;
}
int main(){
    ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
    while(cin>>s){
        solve();
    }
    return 0;
}

转载于:https://www.cnblogs.com/mch5201314/p/10907266.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值