zoukankan      html  css  js  c++  java
  • Coloring Brackets CodeForces

    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思想只是在递推方法不太好想

    我们采用分治的思想

    如果两个括号匹配就寻找l+1 r-1

    若不是就递归分治

    #include<cstdio>
    #include<stack>
    #include<cstring>
    #include<iostream>
    using namespace std;
    const long long mod=1000000007;
    long long dp[707][707][3][3];//左右端点 0无色 1蓝色 2红色
    char s[705];
    int mac[705];
    stack<int> st;
    void dfs(int l,int r)
    {
        //cout<<l<<" "<<r<<"****"<<mac[r]<<endl;
        if(l>=r) return ;
        if(l+1==r)
        {
            dp[l][r][1][0]=1;
            dp[l][r][2][0]=1;
            dp[l][r][0][1]=1;
            dp[l][r][0][2]=1;
            return ;
        }
        if(mac[r]==l)
        {
            dfs(l+1,r-1);
            for(int i=0; i<3; i++)
            {
                for(int x=0; x<3; x++)
                {
                    for(int y=0; y<3; y++)
                    {
                        for(int j=0; j<3; j++)
                        {
                            if(i==0&&x==0||x!=0&&i!=0) continue;
                            if((!(i==1&&y==1))&&(!(i==2&&y==2))&&(!(x==1&&j==1))&&(!(x==2&&j==2)))
                            {
                                dp[l][r][i][x]=(dp[l][r][i][x]+dp[l+1][r-1][y][j])%mod;
                            }
                        }
                    }
                }
            }
            return ;
        }
        int mid=mac[r];
        dfs(l,mid-1);
        dfs(mid,r);
        //cout<<l<<" "<<mid-1<<"***"<<mid<<" "<<r<<endl;
        for(int i=0; i<3; i++)
        {
            for(int x=0; x<3; x++)
            {
                for(int y=0; y<3; y++)
                {
                    for(int j=0; j<3; j++)
                    {
                        if((!(x==1&&y==1))&&(!(x==2&&y==2)))
                        {
                            //cout<<i<<" "<<x<<" "<<y<<" "<<j<<" "<<dp[l][mid-1][i][x]<<" "<<dp[mid][r][y][j]<<endl,
                                dp[l][r][i][j]=(dp[l][r][i][j]+(dp[l][mid-1][i][x]*dp[mid][r][y][j])%mod)%mod;
                        }
                    }
                }
            }
        }
        return ;
    }
    int main()
    {
        memset(dp,0,sizeof(dp));
        memset(mac,0,sizeof(mac));
        scanf("%s",s+1);
        int len=strlen(s+1);
        for(int i=1; i<=len; i++)
        {
            if(s[i]=='(') st.push(i);
            else
            {
                mac[i]=st.top();
                mac[st.top()]=i;
                st.pop();
            }
        }
        dfs(1,len);
        long long ans=0;
        //cout<<dp[1][len][1][0]<<" "<<dp[1][len][2][0]<<" "<<dp[1][len][0][1]<<" "<<dp[1][len][0][2]<<endl;
        for(int i=0; i<3; i++)
        {
            for(int x=0; x<3; x++)
            {
                ans=(ans+dp[1][len][i][x])%mod;
            }
        }
        printf("%I64d
    ",ans);
    }
    /*
    ()()
    */
    
  • 相关阅读:
    〖Linux〗Kubuntu设置打开应用时就只在打开时的工作区显示
    〖Linux〗Kubuntu, the application 'Google Chrome' has requested to open the wallet 'kdewallet'解决方法
    unity, dll is not allowed to be included or could not be found
    android check box 自定义图片
    unity, ios skin crash
    unity, Collider2D.bounds的一个坑
    unity, ContentSizeFitter立即生效
    类里的通用成员函数应声明为static
    unity, Gizmos.DrawMesh一个坑
    直线切割凹多边形
  • 原文地址:https://www.cnblogs.com/caowenbo/p/11852278.html
Copyright © 2011-2022 走看看