#P1428F. Fruit Sequences

    ID: 5620 Type: RemoteJudge 2000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>binary searchdata structuresdivide and conquerdptwo pointers*2400

Fruit Sequences

No submission language available for this problem.

Description

Zookeeper is buying a carton of fruit to feed his pet wabbit. The fruits are a sequence of apples and oranges, which is represented by a binary string s1s2sns_1s_2\ldots s_n of length nn. 11 represents an apple and 00 represents an orange.

Since wabbit is allergic to eating oranges, Zookeeper would like to find the longest contiguous sequence of apples. Let f(l,r)f(l,r) be the longest contiguous sequence of apples in the substring slsl+1srs_{l}s_{l+1}\ldots s_{r}.

Help Zookeeper find l=1nr=lnf(l,r)\sum_{l=1}^{n} \sum_{r=l}^{n} f(l,r), or the sum of ff across all substrings.

The first line contains a single integer nn (1n5105)(1 \leq n \leq 5 \cdot 10^5).

The next line contains a binary string ss of length nn (si{0,1})(s_i \in \{0,1\})

Print a single integer: l=1nr=lnf(l,r)\sum_{l=1}^{n} \sum_{r=l}^{n} f(l,r).

Input

The first line contains a single integer nn (1n5105)(1 \leq n \leq 5 \cdot 10^5).

The next line contains a binary string ss of length nn (si{0,1})(s_i \in \{0,1\})

Output

Print a single integer: l=1nr=lnf(l,r)\sum_{l=1}^{n} \sum_{r=l}^{n} f(l,r).

Samples

Sample Input 1

4
0110

Sample Output 1

12

Sample Input 2

7
1101001

Sample Output 2

30

Sample Input 3

12
011100011100

Sample Output 3

156

Note

In the first test, there are ten substrings. The list of them (we let [l,r][l,r] be the substring slsl+1srs_l s_{l+1} \ldots s_r):

  • [1,1][1,1]: 0
  • [1,2][1,2]: 01
  • [1,3][1,3]: 011
  • [1,4][1,4]: 0110
  • [2,2][2,2]: 1
  • [2,3][2,3]: 11
  • [2,4][2,4]: 110
  • [3,3][3,3]: 1
  • [3,4][3,4]: 10
  • [4,4][4,4]: 0

The lengths of the longest contiguous sequence of ones in each of these ten substrings are 0,1,2,2,1,2,2,1,1,00,1,2,2,1,2,2,1,1,0 respectively. Hence, the answer is 0+1+2+2+1+2+2+1+1+0=120+1+2+2+1+2+2+1+1+0 = 12.