Coloring Brackets CodeForces

来源:互联网 发布:c .net php开发招聘 编辑:程序博客网 时间:2024/06/04 18:53

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 modulo1000000007 (109 + 7).

Example
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真的是不容易的事,对于这道题来说,我想对了dp的维数,想对了每一个维的含义,想对了递归边界,想对了初始化,然而然而然而---
妈蛋就是没想出来转移(弱哭了),我就一直在想,dp[I][J],如果ij不是一合法的区间怎么办,这个值怎么算,dp值代表了什么,然后怎么想都想不出来了

然后就看了题解,发现自己就是个zz

如果ij代表的区间不是一个合法的那么这个区间根本不用算,算了也没意义,没有其他状态会从这个状态转移的。转移的只是每次的合法状态,

然后每次从合法转移就行了--------------------------合法的转移啊----------------------

思路都飞到天上去了。

#include<bits/stdc++.h>using namespace std;long long dp[800][800][3][3];int mach[800];char str[800];const int mod=1000000007;void dfs(int l,int r){    if(dp[l][r][0][1]>0||dp[l][r][1][0]>0||dp[l][r][0][2]>0||dp[l][r][2][0]>0)        return;    if(l+1==r)    {        dp[l][r][0][1]=1;        dp[l][r][1][0]=1;        dp[l][r][0][2]=1;        dp[l][r][2][0]=1;        return ;    }    if(mach[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 ;    }    if(mach[l]!=r)    {        int s=mach[l];        dfs(l,s);        dfs(s+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 q=0; q<3; q++)                    {                        if(!((k==1 && q==1) || (k==2 && q==2)))                            dp[l][r][i][j]=(dp[l][r][i][j]+(dp[l][s][i][k]*dp[s+1][r][q][j])%mod)%mod;                    }                }            }        }    }}void init(char *ts){    stack<int>stk;    for(int i=1; ts[i]; i++)    {        if(ts[i]=='(')            stk.push(i);        else        {            int top=stk.top();            mach[top]=i;            stk.pop();        }    }}int main(){    while(scanf("%s",str+1)!=EOF)    {        int n=strlen(str+1);        memset(dp,0,sizeof(dp));        init(str);        dfs(1,n);        long long ans=0;        for(int i=0; i<3; i++)            for(int j=0; j<3; j++)            {                ans=(ans+dp[1][n][i][j])%mod;            }        printf("%lld\n",ans);    }}