欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

牛客NOIP普及组R1 C括号(dp)

程序员文章站 2024-01-10 21:50:34
题意 题目链接 Sol maya普及组的dp都要想很长时间,我真是越来越菜了qwq 设$f[i][j]$表示当前到第$i$个位置,剩下$j$个左括号没被匹配 转移的时候判断一下即可 ......

题意

题目链接

牛客NOIP普及组R1 C括号(dp)

sol

maya普及组的dp都要想很长时间,我真是越来越菜了qwq

设$f[i][j]$表示当前到第$i$个位置,剩下$j$个左括号没被匹配

转移的时候判断一下即可

/*
 
*/
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<map>
#include<vector>
#include<set>
#include<queue>
#include<cmath>
#define pair pair<int, int>
#define mp(x, y) make_pair(x, y)
#define fi first
#define se second
#include<set>
#include<vector>
//#define int long long
#define ll long long
//#define getchar() (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1<<22, stdin), p1 == p2) ? eof : *p1++)
//char buf[(1 << 22)], *p1 = buf, *p2 = buf;
using namespace std;
const int maxn = 1e5 + 10, inf = 1e9 + 10, mod = 1e9 + 7;
const double eps = 1e-9;
inline int read() {
    char c = getchar(); int x = 0, f = 1;
    while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();}
    while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
    return x * f;
}
int n;
char s[maxn];
int f[2][maxn];
int main() {
//    freopen("a.in", "r", stdin);
//    freopen("c.out", "w", stdout);
    n = read();
    scanf("%s", s + 1);
    int o = 1; f[0][0] = 1; 
    for(int i = 1; i <= n; i++, o ^= 1) {
        //(f[i][j] += f[i - 1][j]) %= mod;
        memset(f[o], 0, sizeof(f[o]));
        if(s[i] == '(') {
            
            for(int j = 0; j <= i; j++) 
                (f[o][j] += f[o ^ 1][j]) %= mod, (f[o][j] += f[o ^ 1][j - 1]) %= mod;            
        }

        else {
            
            for(int j = 0; j <= i; j++)
                (f[o][j] += f[o ^ 1][j]) %= mod, (f[o][j] += f[o ^ 1][j + 1]) %= mod;            
        }

    }
    printf("%d", (f[o ^ 1][0] - 1 + mod) % mod);
    return 0;
}
/*
2
()

3
())


8
)(()(())
*/