Leetcode 1016. Binary String With Substrings Representing 1 To N解题报告(python)

本文介绍了一种算法,用于判断一个二进制字符串是否包含从1到N的所有正整数的二进制表示作为其子串。通过将十进制数转换为二进制并检查其是否在给定的字符串中,该方法有效地解决了问题。

1016. Binary String With Substrings Representing 1 To N

  1. Binary String With Substrings Representing 1 To N python solution

题目描述

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.在这里插入图片描述

解析

我们只需要搜索在n和2**(a-1)之间的数字,因为其他比这小的数字都是他们的子集
值得注意的一点就是,"{0:b}".format(n)代表将十进制数写成二进制的形式。

class Solution:
    def queryString(self, S: str, N: int) -> bool:
        import math
        a=int(math.log(N,2))
        n=N
        while n>2**(a-1):
            #convert n to binary
            if "{0:b}".format(n) not in S:
                return False
            n-=1
        return True

Reference

https://leetcode.com/problems/binary-string-with-substrings-representing-1-to-n/discuss/283982/python-3-faster-than-100-with-o(1)-memory

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值