Skip to content

Latest commit

 

History

History
 
 

1016. Binary String With Substrings Representing 1 To N

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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. 1 <= S.length <= 1000
  2. 1 <= N <= 10^9

Solution 1.

// OJ: https://leetcode.com/problems/binary-string-with-substrings-representing-1-to-n/
// Author: github.com/lzl124631x
// Time: O(N(S+logN))
// Space: O(logN)
class Solution {
private:
    string toBinary(int N) {
        string ans;
        while (N) {
            ans += '0' + (N % 2);
            N /= 2;
        }
        reverse(ans.begin(), ans.end());
        return ans;
    }
public:
    bool queryString(string S, int N) {
        for (int i = N; i >= 1 && i > N / 2; --i) {
            if (S.find(toBinary(i)) == string::npos) return false;
        }
        return true;
    }
};