304090: CF785D. Anton and School - 2

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Anton and School - 2

题意翻译

题意: 给定一个长度`≤2×10^5`由`(`和`)`组成的字符串,问有多少个子串(可以不连续),前半部分是由`(`组成后半部分由`)`组成.

题目描述

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 ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF785D/666f6519688863e0a36337875170dd12050e1c31.png) charactes of the sequence are equal to "(". - Last ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF785D/666f6519688863e0a36337875170dd12050e1c31.png) 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 $ 10^{9}+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!

输入输出格式

输入格式


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 $ 200000 $ .

输出格式


Output one number — the answer for the task modulo $ 10^{9}+7 $ .

输入输出样例

输入样例 #1

)(()()

输出样例 #1

6

输入样例 #2

()()()

输出样例 #2

7

输入样例 #3

)))

输出样例 #3

0

说明

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

Input

题意翻译

给定一个长度不超过 $2\times 10^5$ 的,由 `(` 和 `)` 组成的字符串,问有多少个子序列,形如 $\underbrace{\verb!(((...(((!}_{k\text{ 个}}\underbrace{\verb!)))...)))!}_{k\text{ 个}}$,其中 $k$ 是任意整数。

加入题单

算法标签: