zoukankan      html  css  js  c++  java
  • Coloring Brackets (区间DP)

    Once Petya read a problem about a bracket sequence. He gave it much thought but didn't find a solution. Today you will face it.

    You are given string s. It represents a correct bracket sequence. A correct bracket sequence is the sequence of opening ("(") and closing (")") brackets, such that it is possible to obtain a correct mathematical expression from it, inserting numbers and operators between the brackets. For example, such sequences as "(())()" and "()" are correct bracket sequences and such sequences as ")()" and "(()" are not.

    In a correct bracket sequence each bracket corresponds to the matching bracket (an opening bracket corresponds to the matching closing bracket and vice versa). For example, in a bracket sequence shown of the figure below, the third bracket corresponds to the matching sixth one and the fifth bracket corresponds to the fourth one.

    You are allowed to color some brackets in the bracket sequence so as all three conditions are fulfilled:

    • Each bracket is either not colored any color, or is colored red, or is colored blue.
    • For any pair of matching brackets exactly one of them is colored. In other words, for any bracket the following is true: either it or the matching bracket that corresponds to it is colored.
    • No two neighboring colored brackets have the same color.

    Find the number of different ways to color the bracket sequence. The ways should meet the above-given conditions. Two ways of coloring are considered different if they differ in the color of at least one bracket. As the result can be quite large, print it modulo 1000000007 (109 + 7).

    Input

    The first line contains the single string s (2 ≤ |s| ≤ 700) which represents a correct bracket sequence.

    Output

    Print the only number — the number of ways to color the bracket sequence that meet the above given conditions modulo 1000000007 (109 + 7).

    Examples

    Input
    (())
    Output
    12
    Input
    (()())
    Output
    40
    Input
    ()
    Output
    4

    Note

    Let's consider the first sample test. The bracket sequence from the sample can be colored, for example, as is shown on two figures below.

     

    The two ways of coloring shown below are incorrect.

                                      

    题目大意:

    给定一个合法的括号序列,每对括号有且只能涂一种颜色(一半红色或蓝色,一半不涂),且相邻的两个位置不能涂同一种颜色,求有多少种涂法。

    dp[i][j][x][y]:i,j分别代表左右段点,x,y分别代表左右端点的颜色。

    若当前的i,j是一对括号dp[i][j][][]则由dp[i+1][j-1][][]推来,反之,找到与i匹配的mid,dp[i][j][][]则由dp[i][mid][][]与dp[mid+1][j][][]推来。

    #include <bits/stdc++.h>
    typedef long long ll;
    using namespace std;
    const int MOD=1e9+7;
    ll dp[705][705][3][3];///左端点,右端点,左颜色,右颜色
    int has[705];
    stack<int> st;
    void dfs(int l,int r)
    {
        if(l==r) return;
        if(l+1==r)
        {
            dp[l][r][0][1]=1;
            dp[l][r][0][2]=1;
            dp[l][r][1][0]=1;
            dp[l][r][2][0]=1;
            return;
        }
        if(has[l]==r)
        {
            dfs(l+1,r-1);
            for(int i=0;i<3;i++)
            {
                for(int j=0;j<3;j++)
                {
                    if(j!=1) dp[l][r][0][1]=(dp[l][r][0][1]+dp[l+1][r-1][i][j])%MOD;
                    if(i!=1) dp[l][r][1][0]=(dp[l][r][1][0]+dp[l+1][r-1][i][j])%MOD;
                    if(j!=2) dp[l][r][0][2]=(dp[l][r][0][2]+dp[l+1][r-1][i][j])%MOD;
                    if(i!=2) dp[l][r][2][0]=(dp[l][r][2][0]+dp[l+1][r-1][i][j])%MOD;
                }
            }
            return;
        }
        int mid=has[l];
        dfs(l,mid);
        dfs(mid+1,r);
        for(int i=0;i<3;i++)
            for(int j=0;j<3;j++)
            {
                for(int k=0;k<3;k++)
                    for(int m=0;m<3;m++)
                    {
                        if(k==m&&k) continue;
                        dp[l][r][i][j]+=(dp[l][mid][i][k]*dp[mid+1][r][m][j])%MOD;
                    }
                dp[l][r][i][j]%=MOD;
            }
        return;
    }
    int main()
    {
        ios::sync_with_stdio(false);
        string s;
        cin>>s;
        for(int i=0;s[i];i++)///括号匹配
        {
            if(s[i]=='(')
                st.push(i);
            else
            {
                has[st.top()]=i;
                has[i]=st.top();
                st.pop();
            }
        }
        dfs(0,s.size()-1);
        ll ans=0;
        for(int i=0;i<3;i++)
            for(int j=0;j<3;j++)
                ans+=dp[0][s.size()-1][i][j];
        cout<<ans%MOD<<'
    ';
        return 0;
    }
  • 相关阅读:
    第二篇 Flask 中的 Render Redirect HttpResponse
    第一篇 你好,我叫Flask
    redis发布订阅
    redis学习
    mysql+centos7+主从复制
    Linux系统基础优化及常用命令
    vim与程序员
    Shell基本命令
    js bom和dom
    javaScript基础
  • 原文地址:https://www.cnblogs.com/zdragon1104/p/9175321.html
Copyright © 2011-2022 走看看