CF1428F.Fruit Sequences
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 s1s2…sn of length n . 1 represents an apple and 0 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) be the longest contiguous sequence of apples in the substring slsl+1…sr .
Help Zookeeper find ∑l=1n∑r=lnf(l,r) , or the sum of f across all substrings.
输入格式
The first line contains a single integer n (1≤n≤5⋅105) .
The next line contains a binary string s of length n (si∈{0,1})
输出格式
Print a single integer: ∑l=1n∑r=lnf(l,r) .
输入输出样例
输入#1
4 0110
输出#1
12
输入#2
7 1101001
输出#2
30
输入#3
12 011100011100
输出#3
156
说明/提示
In the first test, there are ten substrings. The list of them (we let [l,r] be the substring slsl+1…sr ):
- [1,1] : 0
- [1,2] : 01
- [1,3] : 011
- [1,4] : 0110
- [2,2] : 1
- [2,3] : 11
- [2,4] : 110
- [3,3] : 1
- [3,4] : 10
- [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,0 respectively. Hence, the answer is 0+1+2+2+1+2+2+1+1+0=12 .