加载中...
1016-子串能表示从 1 到 N 数字的二进制串(Binary String With Substrings Representing 1 To N)
发表于:2021-12-03 | 分类: 中等
字数统计: 315 | 阅读时长: 1分钟 | 阅读量:

原文链接: https://leetcode-cn.com/problems/binary-string-with-substrings-representing-1-to-n

英文原文

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

中文题目

给定一个二进制字符串 S(一个仅由若干 '0' 和 '1' 构成的字符串)和一个正整数 N,如果对于从 1N 的每个整数 X,其二进制表示都是 S 的子串,就返回 true,否则返回 false

 

示例 1:

输入:S = "0110", N = 3
输出:true

示例 2:

输入:S = "0110", N = 4
输出:false

 

提示:

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

通过代码

高赞题解

class Solution {
    public boolean queryString(String S, int N) {
        for(int i=1;i<=N;i++) {
        	if(!S.contains(Integer.toBinaryString(i)))
        		return false;
        }
        return true;
    }
}

统计信息

通过次数 提交次数 AC比率
5425 9286 58.4%

提交历史

提交时间 提交结果 执行时间 内存消耗 语言
上一篇:
1015-可被 K 整除的最小整数(Smallest Integer Divisible by K)
下一篇:
1017-负二进制转换(Convert to Base -2)
本文目录
本文目录