zoukankan      html  css  js  c++  java
  • 牛客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
    )(()(())
    */
  • 相关阅读:
    C#读写xml文件
    XSD(XML Schema Definition)用法实例介绍以及C#使用xsd文件验证XML格式
    C#异步批量下载文件
    echarts的markline的使用 y轴预警线
    Bootstrap-table 增删改查
    二维数组 和 稀疏数组的相互转换 及 数据存入文件中
    Bootstrap-table实现动态合并相同行
    echarts 中 参数的详讲
    BootstrapTable的简单使用教程
    遍历List 中 Map 的值
  • 原文地址:https://www.cnblogs.com/zwfymqz/p/9614238.html
Copyright © 2011-2022 走看看