Problem Description
Given a positive integer n, return the number of the integers in the range [0, n] whose binary representations do not contain consecutive ones.
Key Insights
- The problem can be solved using dynamic programming to track valid binary representations.
- A valid binary number is one that does not have consecutive '1's in its binary representation.
- We can use Fibonacci-like sequences to count valid combinations of bits.
Space and Time Complexity
Time Complexity: O(log n)
Space Complexity: O(1)
Solution
The solution involves using dynamic programming to compute the number of valid binary representations up to a given number. We use a Fibonacci-like approach where:
dp[i]
represents the count of valid integers withi
bits.- The recurrence relation is based on whether the first bit is '0' or '1':
- If the first bit is '0', the remaining bits can be anything valid for
i-1
bits. - If the first bit is '1', the next bit must be '0', and the remaining bits can be anything valid for
i-2
bits.
- If the first bit is '0', the remaining bits can be anything valid for
We also need to compare the binary representation of n
with the valid configurations as we build our count.