codeforces 149d Coloring Brackets

Coloring Brackets
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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).

Sample test(s)
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.


题目链接: http://codeforces.com/problemset/problem/149/D
【题意】给出正确的括号匹配,每一对都要选择一个括号染色(红色或蓝色),相邻的括号不能是同种颜色
【思路】区间dp。dp[i][j][x][y] 表示 括号i到括号 j  ,其中 i 括号 的左边括号的染色情况为 x,j 括号的右边括号的染色情况为 y。0,表示没有染色,1 表示染了红色,2表示染了蓝色。
首先计算出每个括号和与它相匹配的括号位置。再枚举 i , j ,枚举 x , y 的 状态,再枚举内部括号的种类。状态转移方程较为复杂,详见代码
【代码】
/*************************************************************************
    > File Name: cf149d.cpp
    > Author: wanghao
    > Mail: [email protected] 
    > Created Time: 2015年07月10日 星期五 10时43分48秒
 ************************************************************************/

#include
#include
#include
#define ll long long
using namespace std;

int mod=1000000007;
ll dp[710][710][3][3];
int to[710];
int dd[][2]={1,0,2,0,0,1,0,2};
int main()
{
	char s[710];
	while(scanf("%s",s+1)!=EOF)
	{
		int left[710];
		int cnl=0;
		memset(dp,0,sizeof(dp));
		int n=strlen(s+1);
		for(int i=1;i<=n;i++)
			if(s[i]=='(')
				left[cnl++]=i;
			else
			{
				to[i]=left[cnl-1];
				to[left[cnl-1]]=i;
				cnl--;
			}
//		for(int i=1;i<=n;i++)
//			cout<



你可能感兴趣的:(动态规划)