码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces-5C. Longest Regular Bracket Sequence

时间:2018-02-07 19:38:20      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:enc   for   string   ace   names   main   name   type   scanf   

传送门

 

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#define INF 0x3f3f3f3f
using namespace std;
typedef long long LL;

const int maxn = 1e6 + 10;

char str[maxn];
int st[maxn];
int dp[maxn];

int main() {
    scanf("%s", str);
    int len = strlen(str);
    int ans = 0, cnt = 0, pos = 0;
    for (int i = 0; i < len; i++) {
        if (str[i] == () {
            st[pos++] = i;
        } else {
            if (pos) {
                int t = st[--pos];
                dp[i] = dp[t - 1] + i - t + 1;
                if (dp[i] > ans) {
                    ans = dp[i];
                    cnt = 1;
                } else if (dp[i] == ans) {
                    cnt++;
                }
            }
        }

    }
    if (!ans) cnt = 1;
    printf("%d %d\n", ans, cnt);
    return 0;
}

 

Codeforces-5C. Longest Regular Bracket Sequence

标签:enc   for   string   ace   names   main   name   type   scanf   

原文地址:https://www.cnblogs.com/xFANx/p/8427560.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!