CodeForces 5C - Longest Regular Bracket Sequence

This is yet another problem dealing with regular bracket sequences.

We should remind you that a bracket sequence is called regular, if byinserting «+» 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 bracketsequence. You are to find the number of such substrings as well.

Input

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

Output

Print the length of the longest substring that is a regular bracketsequence, 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

 

思路:

开一个flag数组,对应字符串每一位是否正确,全部先标记为false

然后用栈判断、匹配括号,正确的括号直接对应位置变为true

最后就是算出true的最长序列


程序:
#define _CRT_SECURE_NO_WARNINGS

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <stack>
using namespace std;

#define L(u) (u<<1)
#define R(u) (u<<1|1)
#define lowbit(x) (x&-x)
#define rep(i,x,y) for (i=x;i<=y;i++)
#define ll __int64
#define max(x,y) ((x>y)?(x),(y))
#define min(x,y) ((x<y)?(x),(y))
#define sd(x) scanf("%d",&x)
#define sd2(x,y) scanf("%d%d",&x,&y)
#define slld(x) scanf("%lld",&x)

const int N = 1000005;

struct node
{
	char c;
	int id;
}a[N];

char st[N];
bool flag[N];

int main()
{
	int i, j;
	scanf("%s", st);
	memset(flag, false, sizeof(flag));

	int len = strlen(st) - 1;
	rep(j, 0, len)
	{
		if (st[j] == '(')
			break;
	}

	rep(i, 0, len)
	{
		a[i].c = st[i];
		a[i].id = i;
	}

	stack<node> q;
	node temp;
	rep(i, j, len)
	{
		if (a[i].c == '(')
		{
			q.push(a[i]);
		}
		else
			if (a[i].c == ')')
			{
				if (q.empty())
				{
					q.push(a[i]);
				}
				else
				{
					temp = q.top();
					if (temp.c == '(')
					{
						flag[i] = true;
						flag[temp.id] = true;
						q.pop();
					}
					else
					{
						q.push(a[i]);
					}
				}
			}
	}

	int count = 0;
	int mc = 0, mn = 1;
	rep(i, 0, len)
	{
		if (flag[i] == false)
		{
			count = 0;
		}
		else
		{
			count++;
			if (count>mc)
			{
				mc = count;
				mn = 1;
			}
			else
				if (count == mc)
				{
					mn++;
				}
		}
	}

	printf("%d %d\n", mc, mn);

	return 0;
}


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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值