1016. Binary String With Substrings Representing 1 To N**

1016. Binary String With Substrings Representing 1 To N**

https://leetcode.com/problems/binary-string-with-substrings-representing-1-to-n/

题目描述

Given a binary string S (a string consisting only of '0' and '1's) and a positive integer N, return true if and only if for every integer X from 1 to N, the binary representation of X is a substring of S.

Example 1:

Input: S = "0110", N = 3
Output: true

Example 2:

Input: S = "0110", N = 4
Output: false

Note:

  • 1 <= S.length <= 1000
  • 1 <= N <= 10^9

C++ 实现 1

需要对 C++ 如何求一个数的 Binary 形式有所了解: 使用 #include <bitset> 提供的 std::bitset<m>(N).to_string() 实现. 比如, 若 N = 4, m = 32, 那么得到的二进制结果为 0.....0100, 即前面有很多个 0, 因此下面代码先使用 b.find("1") 找出第一个 1 出现的位置.

class Solution {
public:
    bool queryString(string S, int N) {
        while (N > 0) {
            string b = std::bitset<32>(N--).to_string();
            if (S.find(b.substr(b.find("1"))) == std::string::npos) return false;
        }
        return true;
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值