Coloring Brackets

题意翻译

### 题意描述 给出一个配对的括号序列(如 “$\texttt{(())()}$”、“$\texttt{()}$” 等,“$\texttt{)()}$”、“$\texttt{(()}$”是不符合要求的),对该序列按照以下方法染色。 1. 一个括号可以染成红色、蓝色或者不染色。 2. 一对匹配的括号需要且只能将其中一个染色。 3. 相邻两个括号颜色不能相同(但都可以不染色)。 求符合条件的染色方案数,对 $1000000007$ 取模。 ### 输入格式 一行一个字符串 $s$,表示括号序列($2 \leqslant |s| \leqslant 700$)。 ### 输出格式 一个数字,表示染色的方案数(对 $1000000007$ 取模)。

题目描述

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. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF149D/18f69b22b88c3423241947f144f2105947738984.png)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 $ ( $ 10^{9}+7 $ ).

输入输出格式

输入格式


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

输出格式


Print the only number — the number of ways to color the bracket sequence that meet the above given conditions modulo $ 1000000007 $ ( $ 10^{9}+7 $ ).

输入输出样例

输入样例 #1

(())

输出样例 #1

12

输入样例 #2

(()())

输出样例 #2

40

输入样例 #3

()

输出样例 #3

4

说明

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. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF149D/ad2ef7e7b880dbb2c74d687b33fa5bb065b49c19.png)![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF149D/e8aaa9835b069771e0292b8744b88177f6af495e.png)The two ways of coloring shown below are incorrect. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF149D/8d4dd8946c17ff03c7f54ecbd76a12b35b8a0520.png)![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF149D/50e873752a97d444a4a9e6af478d696b8b1a6cff.png)