comments | difficulty | edit_url | tags | |
---|---|---|---|---|
true |
困难 |
|
给定一个正整数 n
,请你统计在 [0, n]
范围的非负整数中,有多少个整数的二进制表示中不存在 连续的 1 。
示例 1:
输入: n = 5 输出: 5 解释: 下面列出范围在 [0, 5] 的非负整数与其对应的二进制表示: 0 : 0 1 : 1 2 : 10 3 : 11 4 : 100 5 : 101 其中,只有整数 3 违反规则(有两个连续的 1 ),其他 5 个满足规则。
示例 2:
输入: n = 1 输出: 2
示例 3:
输入: n = 2 输出: 3
提示:
1 <= n <= 109
这道题实际上是求在给定区间
对于区间
不过对于本题而言,我们只需要求出区间
这里我们用记忆化搜索来实现数位 DP。基本步骤如下:
我们首先获取数字
- 数字
$i$ 表示当前搜索到的位置,我们从数字的最高位开始搜索,即二进制字符串的首字符; - 数字
$\textit{pre}$ 表示上一个数字二进制位上的数字,对于本题,$\textit{pre}$ 的初始值为$0$ ; - 布尔值
$\textit{limit}$ 表示可填的数字的限制,如果无限制,那么可以选择$[0,1]$ ,否则,只能选择$[0, \textit{up}]$ 。
函数的执行过程如下:
如果
- 如果
$\textit{pre}$ 和$j$ 都为$1$ ,说明有连续的$1$ ,直接跳过; - 否则,我们递归到下一层,更新
$\textit{pre}$ 为$j$ ,并将$\textit{limit}$ 更新为$\textit{limit}$ 与$j$ 是否等于$\textit{up}$ 的逻辑与。
最后,我们将所有递归到下一层的结果累加,即为答案。
时间复杂度
相似题目:
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)
class Solution {
private int n;
private Integer[][] f;
public int findIntegers(int n) {
this.n = n;
int m = Integer.SIZE - Integer.numberOfLeadingZeros(n);
f = new Integer[m][2];
return dfs(m - 1, 0, true);
}
private int dfs(int i, int pre, boolean limit) {
if (i < 0) {
return 1;
}
if (!limit && f[i][pre] != null) {
return f[i][pre];
}
int up = limit ? (n >> i & 1) : 1;
int ans = 0;
for (int j = 0; j <= up; ++j) {
if (j == 1 && pre == 1) {
continue;
}
ans += dfs(i - 1, j, limit && j == up);
}
if (!limit) {
f[i][pre] = ans;
}
return ans;
}
}
class Solution {
public:
int findIntegers(int n) {
int m = 32 - __builtin_clz(n);
int f[m][2];
memset(f, -1, sizeof(f));
auto dfs = [&](auto&& dfs, int i, int pre, bool limit) -> int {
if (i < 0) {
return 1;
}
if (!limit && f[i][pre] != -1) {
return f[i][pre];
}
int up = limit ? (n >> i & 1) : 1;
int ans = 0;
for (int j = 0; j <= up; ++j) {
if (j && pre) {
continue;
}
ans += dfs(dfs, i - 1, j, limit && j == up);
}
if (!limit) {
f[i][pre] = ans;
}
return ans;
};
return dfs(dfs, m - 1, 0, true);
}
};
func findIntegers(n int) int {
m := bits.Len(uint(n))
f := make([][2]int, m)
for i := range f {
f[i] = [2]int{-1, -1}
}
var dfs func(i, pre int, limit bool) int
dfs = func(i, pre int, limit bool) int {
if i < 0 {
return 1
}
if !limit && f[i][pre] != -1 {
return f[i][pre]
}
up := 1
if limit {
up = n >> i & 1
}
ans := 0
for j := 0; j <= up; j++ {
if j == 1 && pre == 1 {
continue
}
ans += dfs(i-1, j, limit && j == up)
}
if !limit {
f[i][pre] = ans
}
return ans
}
return dfs(m-1, 0, true)
}
function findIntegers(n: number): number {
const m = n.toString(2).length;
const f: number[][] = Array.from({ length: m }, () => Array(2).fill(-1));
const dfs = (i: number, pre: number, limit: boolean): number => {
if (i < 0) {
return 1;
}
if (!limit && f[i][pre] !== -1) {
return f[i][pre];
}
const up = limit ? (n >> i) & 1 : 1;
let ans = 0;
for (let j = 0; j <= up; ++j) {
if (pre === 1 && j === 1) {
continue;
}
ans += dfs(i - 1, j, limit && j === up);
}
if (!limit) {
f[i][pre] = ans;
}
return ans;
};
return dfs(m - 1, 0, true);
}