返回介绍

solution / 1500-1599 / 1513.Number of Substrings With Only 1s / README_EN

发布于 2024-06-17 01:03:18 字数 2997 浏览 0 评论 0 收藏 0

1513. Number of Substrings With Only 1s

中文文档

Description

Given a binary string s, return _the number of substrings with all characters_ 1_'s_. Since the answer may be too large, return it modulo 109 + 7.

 

Example 1:

Input: s = "0110111"
Output: 9
Explanation: There are 9 substring in total with only 1's characters.
"1" -> 5 times.
"11" -> 3 times.
"111" -> 1 time.

Example 2:

Input: s = "101"
Output: 2
Explanation: Substring "1" is shown 2 times in s.

Example 3:

Input: s = "111111"
Output: 21
Explanation: Each substring contains only 1's characters.

 

Constraints:

  • 1 <= s.length <= 105
  • s[i] is either '0' or '1'.

Solutions

Solution 1

class Solution:
  def numSub(self, s: str) -> int:
    ans = cnt = 0
    for c in s:
      if c == "1":
        cnt += 1
      else:
        cnt = 0
      ans += cnt
    return ans % (10**9 + 7)
class Solution {
  public int numSub(String s) {
    final int mod = (int) 1e9 + 7;
    int ans = 0, cnt = 0;
    for (int i = 0; i < s.length(); ++i) {
      cnt = s.charAt(i) == '1' ? cnt + 1 : 0;
      ans = (ans + cnt) % mod;
    }
    return ans;
  }
}
class Solution {
public:
  int numSub(string s) {
    int ans = 0, cnt = 0;
    const int mod = 1e9 + 7;
    for (char& c : s) {
      cnt = c == '1' ? cnt + 1 : 0;
      ans = (ans + cnt) % mod;
    }
    return ans;
  }
};
func numSub(s string) (ans int) {
  const mod = 1e9 + 7
  cnt := 0
  for _, c := range s {
    if c == '1' {
      cnt++
    } else {
      cnt = 0
    }
    ans = (ans + cnt) % mod
  }
  return
}
function numSub(s: string): number {
  const mod = 10 ** 9 + 7;
  let ans = 0;
  let cnt = 0;
  for (const c of s) {
    cnt = c == '1' ? cnt + 1 : 0;
    ans = (ans + cnt) % mod;
  }
  return ans;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文