LeetCode 题解工作台

检查按位或是否存在尾随零

给你一个 正整数 数组 nums 。 你需要检查是否可以从数组中选出 两个或更多 元素,满足这些元素的按位或运算( OR )结果的二进制表示中 至少 存在一个尾随零。 例如,数字 5 的二进制表示是 "101" ,不存在尾随零,而数字 4 的二进制表示是 "100" ,存在两个尾随零。 如果可以选择…

category

2

题型

code_blocks

5

代码语言

hub

3

相关题

当前训练重点

简单 · 数组·结合·位运算·操作

bolt

答案摘要

根据题意,我们可以知道,如果数组中存在两个或两个以上的元素,其按位或运算结果存在尾随零,那么数组中必然存在至少两个偶数。因此,我们可以统计数组中偶数的个数,如果偶数的个数大于等于 ,那么就返回 `true`,否则返回 `false`。 时间复杂度 ,其中 是数组的长度。空间复杂度 。

Interview AiBox logo

Interview AiBox 实时 AI 助手,陪你讲清 数组·结合·位运算·操作 题型思路

试试 AiBox 面试助手arrow_forward
description

题目描述

给你一个 正整数 数组 nums

你需要检查是否可以从数组中选出 两个或更多 元素,满足这些元素的按位或运算( OR)结果的二进制表示中 至少 存在一个尾随零。

例如,数字 5 的二进制表示是 "101",不存在尾随零,而数字 4 的二进制表示是 "100",存在两个尾随零。

如果可以选择两个或更多元素,其按位或运算结果存在尾随零,返回 true;否则,返回 false

 

示例 1:

输入:nums = [1,2,3,4,5]
输出:true
解释:如果选择元素 2 和 4,按位或运算结果是 6,二进制表示为 "110" ,存在一个尾随零。

示例 2:

输入:nums = [2,4,8,16]
输出:true
解释:如果选择元素 2 和 4,按位或运算结果是 6,二进制表示为 "110",存在一个尾随零。
其他按位或运算结果存在尾随零的可能选择方案包括:(2, 8), (2, 16), (4, 8), (4, 16), (8, 16), (2, 4, 8), (2, 4, 16), (2, 8, 16), (4, 8, 16), 以及 (2, 4, 8, 16) 。

示例 3:

输入:nums = [1,3,5,7,9]
输出:false
解释:不存在按位或运算结果存在尾随零的选择方案。

 

提示:

  • 2 <= nums.length <= 100
  • 1 <= nums[i] <= 100
lightbulb

解题思路

方法一:统计偶数个数

根据题意,我们可以知道,如果数组中存在两个或两个以上的元素,其按位或运算结果存在尾随零,那么数组中必然存在至少两个偶数。因此,我们可以统计数组中偶数的个数,如果偶数的个数大于等于 22,那么就返回 true,否则返回 false

时间复杂度 O(n)O(n),其中 nn 是数组的长度。空间复杂度 O(1)O(1)

1
2
3
4
class Solution:
    def hasTrailingZeros(self, nums: List[int]) -> bool:
        return sum(x & 1 ^ 1 for x in nums) >= 2
speed

复杂度分析

指标
时间Depends on the final approach
空间Depends on the final approach
psychology

面试官常问的追问

外企场景
  • question_mark

    Candidate demonstrates an understanding of bitwise operations and binary representation.

  • question_mark

    Candidate efficiently handles the problem by limiting the scope to pairs, avoiding unnecessary computations.

  • question_mark

    Candidate shows knowledge of early termination techniques to optimize performance.

warning

常见陷阱

外企场景
  • error

    Not reducing the problem to only pairwise checks, which may lead to inefficiency.

  • error

    Overcomplicating the problem by trying to handle larger sets than necessary.

  • error

    Failing to check the binary representation properly for trailing zeros in the OR result.

swap_horiz

进阶变体

外企场景
  • arrow_right_alt

    Check if the bitwise AND of selected numbers has trailing zeros.

  • arrow_right_alt

    Check for a condition where the bitwise OR has multiple trailing zeros.

  • arrow_right_alt

    Find if there's any subset whose bitwise OR contains a trailing zero.

help

常见问题

外企场景

检查按位或是否存在尾随零题解:数组·结合·位运算·操作 | LeetCode #2980 简单