Zagrade
문제
An expression is a string of consisting only of properly paired brackets. For example, “()()” and “(()())” are expressions, whereas “)(” and “()(“ are not. We can define expressions inductively as follows:
- “
()” is an expression. - If is an expression, then “
()” is also an expression. - If and are expressions, then “” is also an expression.
A tree is a structure consisting of nodes denoted with numbers from to and edges placed so there is a unique path between each two nodes. Additionally, a single character is written in each node. The character is either an open bracket “(” or a closed bracket “)”. For different nodes and , is a string obtained by traversing the unique path from to and, one by one, adding the character written in the node we’re passing through. The string also contains the character written in the node (at the first position) and the character written in the node (at the last position).
Find the total number of pairs of different nodes and such that is a correct expression.
입력
The first line of contains the an integer — the number of nodes in the tree. The following line contains an -character string where each character is either “)” or “(”, the th character in the string is the character written in the node . Each of the following lines contains two different positive integers and (1 ≤ x, y ≤ n) — the labels of nodes directly connected with an edge.
출력
Output the required number of pairs.
예제
예제 1
4 (()) 1 2 2 3 3 4
2
예제 2
5 ())(( 1 2 2 3 2 4 3 5
3
예제 3
7 )()()(( 1 2 1 3 1 6 2 4 4 5 5 7
6