As you probably know, Anton goes to school. One of the school subjects that Anton studies is Bracketology. On the Bracketology lessons students usually learn different sequences that consist of round brackets (characters "(" and ")" (without quotes)).
On the last lesson Anton learned about the regular simple bracket sequences (RSBS). A bracket sequence s of length n is an RSBS if the following conditions are met:
- It is not empty (that is n ≠ 0).
- The length of the sequence is even.
- First charactes of the sequence are equal to "(".
- Last charactes of the sequence are equal to ")".
For example, the sequence "((()))" is an RSBS but the sequences "((())" and "(()())" are not RSBS.
Elena Ivanovna, Anton's teacher, gave him the following task as a homework. Given a bracket sequence s. Find the number of its distinct subsequences such that they are RSBS. Note that a subsequence of s is a string that can be obtained from s by deleting some of its elements. Two subsequences are considered distinct if distinct sets of positions are deleted.
Because the answer can be very big and Anton's teacher doesn't like big numbers, she asks Anton to find the answer modulo 109 + 7.
Anton thought of this task for a very long time, but he still doesn't know how to solve it. Help Anton to solve this task and write a program that finds the answer for it!
Input
The only line of the input contains a string s — the bracket sequence given in Anton's homework. The string consists only of characters "(" and ")" (without quotes). It's guaranteed that the string is not empty and its length doesn't exceed 200 000.
Output
Output one number — the answer for the task modulo 109 + 7.
Example
Input
)(()()
Output
6
Input
()()()
Output
7
Input
)))
Output
0
Note
In the first sample the following subsequences are possible:
- If we delete characters at the positions 1 and 5 (numbering starts with one), we will get the subsequence "(())".
- If we delete characters at the positions 1, 2, 3 and 4, we will get the subsequence "()".
- If we delete characters at the positions 1, 2, 4 and 5, we will get the subsequence "()".
- If we delete characters at the positions 1, 2, 5 and 6, we will get the subsequence "()".
- If we delete characters at the positions 1, 3, 4 and 5, we will get the subsequence "()".
- If we delete characters at the positions 1, 3, 5 and 6, we will get the subsequence "()".
The rest of the subsequnces are not RSBS. So we got 6 distinct subsequences that are RSBS, so the answer is 6.
题目链接:http://codeforces.com/problemset/problem/785/D
当扫描到第i个‘(’的时候,他的左边有x个左括号,右面有y个右括号(因为第i个是左括号,所以可用的右括号只有y-1个)。
AC代码如下:
#include <bits/stdc++.h>
#define LL long long
using namespace std;
const int maxn = 2e5 + 10;
const LL mod = 1e9 + 7;
LL f[maxn],inv[maxn];
char str[maxn];
LL qpow(LL a, LL b){
LL res = 1;
while(b){
if(b & 1) res = (a * res) % mod;
b >>= 1;
a = (a * a) % mod;
}
return res;
}
void Init(){
f[0] = 1;
for(int i = 1; i < maxn; i ++)
f[i] = (f[i-1] * i) % mod;
inv[maxn-1] = qpow(f[maxn-1],mod-2);
for(int i = maxn - 2; i >= 0; i --)
inv[i] = inv[i+1] * (i+1) % mod;
}
int solve(int x, int y){
return (f[x+y-1] * inv[y-1] % mod) * inv[x] % mod;
}
int main(){
Init();
while(~scanf("%s",str)){
int cnt1 = 0, cnt2 = 0, ans = 0, len = strlen(str);
for(int i = 0; i < len; i ++)
if(str[i] == ')') cnt2 ++;
for(int i = 0; i < len; i ++){
if(str[i] == ')') cnt2 --;
else{
cnt1 ++;
ans = (ans + solve(cnt1,cnt2)) % mod;
}
}
printf("%d\n",ans);
}
return 0;
}