Problem Description
Given a binary string s, return the number of substrings with all characters being '1's. Since the answer may be too large, return it modulo 10^9 + 7.
Key Insights
- Each contiguous segment of '1's contributes to multiple substrings.
- For a segment of length n consisting of '1's, the number of substrings is given by the formula n * (n + 1) / 2.
- The solution requires iterating through the string and counting segments of '1's while summing their contributions.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1)
Solution
To solve the problem, we will iterate through the binary string while maintaining a count of consecutive '1's. Whenever we encounter a '0', we will compute the number of substrings contributed by the counted '1's using the formula n * (n + 1) / 2 and reset the counter. Finally, we will return the total count of substrings modulo 10^9 + 7.