Non-negative Integers without Consecutive Ones — LeetCode 600 Python Solution
- Problem
- #600
- Pattern
- Dynamic Programming
- Reading time
- 3 min
- Source
- leetcode.com
The problem
Given a positive integer n, return the number of the integers in the range [0, n] whose binary representations do not contain consecutive ones.
Example
- Input
- n = 5
- Output
- 5
- Explanation
- Here are the non-negative integers <= 5 with their corresponding binary representations:
Python solution
class Solution:
def findIntegers(self, n: int) -> int:
@cache
def dfs(i: int, pre: int, limit: bool) -> int:
if i < 0:
return 1
up = (n >> i & 1) if limit else 1
ans = 0
for j in range(up + 1):
if pre and j:
continue
ans += dfs(i - 1, j, limit and j == up)
return ans
return dfs(n.bit_length() - 1, 0, True)Complexity
| Measure | Complexity |
|---|---|
| Time | O(\log n) |
| Space | O(\log n) auxiliary |
Pattern: Dynamic Programming
Define a state, write the transition, and stop recomputing the same subproblem. LeetCode 600. Non-negative Integers without Consecutive Ones is filed here on both counts: the reference solution below belongs to the algorithm family this hub collects, and LeetCode tags it Dynamic Programming.
The dynamic programming guide has the Python template for the pattern and the 481 LeetCode problems that use it.
Related problems
Frequently asked questions
- How hard is LeetCode 600. Non-negative Integers without Consecutive Ones?
- LeetCode 600. Non-negative Integers without Consecutive Ones is rated Hard on LeetCode.
- What is the time complexity of LeetCode 600. Non-negative Integers without Consecutive Ones?
- The Python solution on this page runs in O(\log n).
- What is the space complexity of LeetCode 600. Non-negative Integers without Consecutive Ones?
- The Python solution on this page uses O(\log n) auxiliary space.
- What topics does LeetCode 600. Non-negative Integers without Consecutive Ones cover?
- LeetCode 600. Non-negative Integers without Consecutive Ones is tagged Dynamic Programming on LeetCode.