time limit per test2 seconds

memory limit per test256 megabytes

inputstandard input

outputstandard output

As Famil Door’s birthday is coming, some of his friends (like Gabi) decided to buy a present for him. His friends are going to buy a string consisted of round brackets since Famil Door loves string of brackets of length n more than any other strings!

The sequence of round brackets is called valid if and only if:

the total number of opening brackets is equal to the total number of closing brackets;

for any prefix of the sequence, the number of opening brackets is greater or equal than the number of closing brackets.

Gabi bought a string s of length m (m ≤ n) and want to complete it to obtain a valid sequence of brackets of length n. He is going to pick some strings p and q consisting of round brackets and merge them in a string p + s + q, that is add the string p at the beginning of the string s and string q at the end of the string s.

Now he wonders, how many pairs of strings p and q exists, such that the string p + s + q is a valid sequence of round brackets. As this number may be pretty large, he wants to calculate it modulo 109 + 7.

Input

First line contains n and m (1 ≤ m ≤ n ≤ 100 000, n - m ≤ 2000) — the desired length of the string and the length of the string bought by Gabi, respectively.

The second line contains string s of length m consisting of characters ‘(’ and ‘)’ only.

Output

Print the number of pairs of string p and q such that p + s + q is a valid sequence of round brackets modulo 109 + 7.

Examples

input

4 1

(

output

4

input

4 4

(())

output

1

input

4 3

(((

output

0

Note

In the first sample there are four different valid pairs:

p = “(“, q = “))”

p = “()”, q = “)”

p = “”, q = “())”

p = “”, q = “)()”

In the second sample the only way to obtain a desired string is choose empty p and q.

In the third sample there is no way to get a valid sequence of brackets.

【题解】



给你一个串;

只包含圆括号;

可以让你在最左边和最右边加上两个串p和q;

这两个串也只能包括括号;

要使得最后的括号是匹配的;

问你有多少对P和q,p和q可以为空

每时每刻左括号的数目都要大于等于右括号的数目;

最后那个限制起了很大的作用;

把左括号看做1,右括号看做-1;

则它的要求是每时每刻前缀和都大于0;

则先求出所给的s的前缀和,并记录前缀和的最小值mi;

预处理出dp[i][j]表示i个括号能够造出前缀和为j的方案数(满足每时每刻前缀和都大于等于0的方案);

然后枚举q的长度i,前缀和为j

如果dp[i][j]+mi>=0;

则从左到中间那个串都是满足题意的了(前缀和始终大于等于0)

然后再获取P;

p的长度就是n-m-i;

它的前缀和该是啥?j+pres;

这里的j+pres指的是负数->加上dp[n-m-i][j+pres];

可以理解为从右到左进行DP;然后从右到左的过程中每时每刻右括号的数目都大于左括号的数目;(等价转化);

这样可以保证从最左边的q到最右边的p的过程中间都不会出现前缀和小于0的情况;

假设在p处出现了前缀和小于0;则在这个位置的右边右括号的数目大于左括号的数目;最后结果就不可能为0;只可能是负数;

这和j+pres-(j+pres)==0不符合;

所以在这个串中不会出现前缀和为负数的情况;

具体实现看代码;

(那个DP很简单的。。);

  1. #include <cstdio>
  2. #include <cmath>
  3. #include <set>
  4. #include <map>
  5. #include <iostream>
  6. #include <algorithm>
  7. #include <cstring>
  8. #include <queue>
  9. #include <vector>
  10. #include <stack>
  11. #include <string>
  12. #define LL long long
  13. using namespace std;
  14. const int MAXN = 2000;
  15. const LL MOD = 1e9+7;
  16. int n,m;
  17. LL dp[MAXN+20][MAXN+20];
  18. string s;
  19. const int dx[5] = {0,1,-1,0,0};
  20. const int dy[5] = {0,0,0,-1,1};
  21. void input_LL(LL &r)
  22. {
  23. r = 0;
  24. char t = getchar();
  25. while (!isdigit(t)) t = getchar();
  26. LL sign = 1;
  27. if (t == '-')sign = -1;
  28. while (!isdigit(t)) t = getchar();
  29. while (isdigit(t)) r = r * 10 + t - '0', t = getchar();
  30. r = r*sign;
  31. }
  32. void input_int(int &r)
  33. {
  34. r = 0;
  35. char t = getchar();
  36. while (!isdigit(t)) t = getchar();
  37. int sign = 1;
  38. if (t == '-')sign = -1;
  39. while (!isdigit(t)) t = getchar();
  40. while (isdigit(t)) r = r * 10 + t - '0', t = getchar();
  41. r = r*sign;
  42. }
  43. int main()
  44. {
  45. //freopen("F:\\rush.txt", "r", stdin);
  46. input_int(n);input_int(m);
  47. cin >> s;
  48. int pres = 0,mi=0;
  49. for (int i = 0;i<=m-1;i++)
  50. {
  51. if (s[i]=='(')
  52. pres++;
  53. else
  54. pres--;
  55. mi = min(mi,pres);
  56. }
  57. dp[0][0] = 1;
  58. for (int i = 1;i <= 2000;i++)
  59. for (int j = 0;j <= i;j++)
  60. {
  61. if (j)
  62. dp[i][j]=(dp[i][j]+dp[i-1][j-1])%MOD;//add "("
  63. dp[i][j] = (dp[i][j]+dp[i-1][j+1]) % MOD;//add ")"
  64. }
  65. LL ans = 0;
  66. for (int p = 0;p <= n-m;p++)
  67. for (int j = 0;j <= p;j++)
  68. if (mi+j>=0 && j+pres<=(n-m))
  69. ans = (ans + dp[p][j]*dp[n-m-p][pres+j])%MOD;
  70. cout << ans << endl;
  71. return 0;
  72. }

【23.24%】【codeforces 629C】Famil Door and Brackets的更多相关文章

  1. JAVA 基础编程练习题24 【程序 24 根据输入求输出】

    24 [程序 24 根据输入求输出] 题目:给一个不多于 5 位的正整数,要求:一.求它是几位数,二.逆序打印出各位数字. package cskaoyan; public class cskaoya ...

  2. 【 BowWow and the Timetable CodeForces - 1204A 】【思维】

    题目链接 可以发现 十进制4 对应 二进制100 十进制16 对应 二进制10000 十进制64 对应 二进制1000000 可以发现每多两个零,4的次幂就增加1. 用string读入题目给定的二进制 ...

  3. 【23. 合并K个排序链表】【困难】【优先队列/堆排序】

    合并 k 个排序链表,返回合并后的排序链表.请分析和描述算法的复杂度. 示例: 输入: [ 1->4->5, 1->3->4, 2->6] 输出: 1->1-> ...

  4. 【20.23%】【codeforces 740A】Alyona and copybooks

    time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...

  5. 【23.33%】【codeforces 557B】Pasha and Tea

    time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...

  6. 【23.39%】【codeforces 558C】Amr and Chemistry

    time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...

  7. 【24.17%】【codeforces 721D】Maxim and Array

    time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...

  8. 【24.67%】【codeforces 551C】 GukiZ hates Boxes

    time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...

  9. 【24.34%】【codeforces 560D】Equivalent Strings

    time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...

随机推荐

  1. 【部分原创】python实现视频内的face swap(换脸)

    1.准备工作,按博主的环境为准 Python 3.5 Opencv 3 Tensorflow 1.3.1 Keras 2 cudnn和CUDA,如果你的GPU足够厉害并且支持的话,可以选择安装 那就先 ...

  2. html 代码

    1.结构性定义 文件类型 <HTML></HTML> (放在档案的开头与结尾) 文件主题 <TITLE></TITLE> (必须放在「文头」区块内) 文 ...

  3. Javascript和jquery事件--双击事件

    在js中和jq中对应的命名都为dblclick,ondblclick,但是ondblclick和dom元素的属性相似,可以在行内设置,也可以使用attr设置. 同时,双击事件需要关注一个问题,那就是双 ...

  4. OFFICE2013 打开两个word文档卡死的解决办法

    这几天Office打开一个word好好的,两个就直接卡死了,百度了一下: 原文地址: http://hi.baidu.com/pjhero/item/ca326e3dcfebebb9623aff6e ...

  5. 【例题5-5 UVA 12096 】The SetStack Computer

    [链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 用set来解决这个问题. 考虑如何表示 { {{}} }这个集合 我们可以把{}这个集合和一个数字映射->1 然后把1加入到某 ...

  6. vue项目中一些文件的作用

    原文 简书原文:https://www.jianshu.com/p/38749e5bec3c 大纲 1.vue项目结构 2.主要的配置文件 2.1.package.json 2.2.dev-serve ...

  7. POJ 1511 Invitation Cards (ZOJ 2008) 使用优先队列的dijkstra

    传送门: http://poj.org/problem?id=1511 http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=1008 ...

  8. windows7 通过WSUS服务器更新,报错,错误代码800b0001

    链接 您好,根据分析您的日志,可以看到“WARNING: WU client failed Searching for update with error 0x800b0001”等关键信息, 故障原因 ...

  9. Normal Equation of Computing Parameters Analytically

    Normal Equation Note: [8:00 to 8:44 - The design matrix X (in the bottom right side of the slide) gi ...

  10. js进阶正则表达式13RegExp对象方法(RegExp对象的方法:compile,test,exec)(子表达式 var reg1=/([a-z]+)\d/)

    js进阶正则表达式13RegExp对象方法(RegExp对象的方法:compile,test,exec)(子表达式 var reg1=/([a-z]+)\d/) 一.总结 1.RegExp对象有三个方 ...