Codeforces 5C. Longest Regular Bracket Sequence

C. Longest Regular Bracket Sequence
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

This is yet another problem dealing with regular bracket sequences.

We should remind you that a bracket sequence is called regular, if by inserting «+» and «1» into it we can get a correct mathematical expression. For example, sequences «(())()», «()» and «(()(()))» are regular, while «)(», «(()» and «(()))(» are not.

You are given a string of «(» and «)» characters. You are to find its longest substring that is a regular bracket sequence. You are to find the number of such substrings as well.

Input

The first line of the input file contains a non-empty string, consisting of «(» and «)» characters. Its length does not exceed 106.

Output

Print the length of the longest substring that is a regular bracket sequence, and the number of such substrings. If there are no such substrings, write the only line containing "0 1".

Sample test(s)
input
)((())))(()())
output
6 2
input
))(
output
0 1

题意:求最长的有效括号序列长度

方法: 使用一个栈辅助匹配, 每次匹配成功一个记录‘)’对应的长度

代码:

#include <stdio.h>
#include <string>
#include <iostream>
using namespace std;

const int MAXN =  1000005;
int num[MAXN], leftBracket[MAXN];

int main()
{
#ifdef _LOCAL
    freopen("F://input.txt", "r", stdin);
#endif
  string str;
  cin >> str;
  int count = 0, max = 0, times = 1;
  for(int i = 0; i < str.size(); ++i)
  {
      if(str[i] == '(')
          leftBracket[++count] = i;
      else if(count)
      {
          int pairLeft = leftBracket[count];
          num[i] = i - pairLeft + 1 + num[pairLeft - 1];
          --count;
          if(num[i] == max)
          {
              ++times;
          }
          else if(num[i] > max)
          {
              max = num[i];
              times = 1;
          }
      }
  }
  printf("%d %d\n", max, times);
  return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值