Count Binary Substrings
Give a strings
, count the number of non-empty (contiguous) substrings that have the same number of 0's and 1's, and all the 0's and all the 1's in these substrings are grouped consecutively.
Substrings that occur multiple times are counted the number of times they occur.
Example 1:
Example 2:
Note
大致就是算一下连续元素,并用pre来记录之前的结果,然后之前组和当前组取小的那个
First, I count the number of 1 or 0 grouped consecutively.
For example "0110001111" will be[1, 2, 3, 4]
.
Second, for any possible substrings with 1 and 0 grouped consecutively, the number of valid substring will be the minimum number of 0 and 1.
For example "0001111", will bemin(3, 4) = 3
, ("01", "0011", "000111"
)
记得加上最后的
Code
Last updated