返回介绍

solution / 1000-1099 / 1016.Binary String With Substrings Representing 1 To N / README_EN

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

1016. Binary String With Substrings Representing 1 To N

中文文档

Description

Given a binary string s and a positive integer n, return true_ if the binary representation of all the integers in the range _[1, n]_ are substrings of _s_, or _false_ otherwise_.

A substring is a contiguous sequence of characters within a string.

 

Example 1:

Input: s = "0110", n = 3
Output: true

Example 2:

Input: s = "0110", n = 4
Output: false

 

Constraints:

  • 1 <= s.length <= 1000
  • s[i] is either '0' or '1'.
  • 1 <= n <= 109

Solutions

Solution 1

class Solution:
  def queryString(self, s: str, n: int) -> bool:
    if n > 1000:
      return False
    return all(bin(i)[2:] in s for i in range(n, n // 2, -1))
class Solution {
  public boolean queryString(String s, int n) {
    if (n > 1000) {
      return false;
    }
    for (int i = n; i > n / 2; i--) {
      if (!s.contains(Integer.toBinaryString(i))) {
        return false;
      }
    }
    return true;
  }
}
class Solution {
public:
  bool queryString(string s, int n) {
    if (n > 1000) {
      return false;
    }
    for (int i = n; i > n / 2; --i) {
      string b = bitset<32>(i).to_string();
      b = b.substr(b.find_first_not_of('0'));
      if (s.find(b) == string::npos) {
        return false;
      }
    }
    return true;
  }
};
func queryString(s string, n int) bool {
  if n > 1000 {
    return false
  }
  for i := n; i > n/2; i-- {
    if !strings.Contains(s, strconv.FormatInt(int64(i), 2)) {
      return false
    }
  }
  return true
}
function queryString(s: string, n: number): boolean {
  if (n > 1000) {
    return false;
  }
  for (let i = n; i > n / 2; --i) {
    if (s.indexOf(i.toString(2)) === -1) {
      return false;
    }
  }
  return true;
}

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

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

发布评论

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