1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/按位与结果大于零的最长组合 [largest-combination-with-bitwise-and-greater-than-zero].html
2022-05-22 11:21:15 +08:00

43 lines
1.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>对数组&nbsp;<code>nums</code> 执行 <strong>按位与</strong> 相当于对数组&nbsp;<code>nums</code> 中的所有整数执行 <strong>按位与</strong></p>
<ul>
<li>例如,对 <code>nums = [1, 5, 3]</code> 来说,按位与等于 <code>1 &amp; 5 &amp; 3 = 1</code></li>
<li>同样,对 <code>nums = [7]</code> 而言,按位与等于 <code>7</code></li>
</ul>
<p>给你一个正整数数组 <code>candidates</code> 。计算 <code>candidates</code> 中的数字每种组合下 <strong>按位与</strong> 的结果。 <code>candidates</code> 中的每个数字在每种组合中只能使用 <strong>一次</strong></p>
<p>返回按位与结果大于 <code>0</code><strong>最长</strong> 组合的长度<em></em></p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>candidates = [16,17,71,62,12,24,14]
<strong>输出:</strong>4
<strong>解释:</strong>组合 [16,17,62,24] 的按位与结果是 16 &amp; 17 &amp; 62 &amp; 24 = 16 &gt; 0 。
组合长度是 4 。
可以证明不存在按位与结果大于 0 且长度大于 4 的组合。
注意,符合长度最大的组合可能不止一种。
例如,组合 [62,12,24,14] 的按位与结果是 62 &amp; 12 &amp; 24 &amp; 14 = 8 &gt; 0 。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>candidates = [8,8]
<strong>输出:</strong>2
<strong>解释:</strong>最长组合是 [8,8] ,按位与结果 8 &amp; 8 = 8 &gt; 0 。
组合长度是 2 ,所以返回 2 。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= candidates.length &lt;= 10<sup>5</sup></code></li>
<li><code>1 &lt;= candidates[i] &lt;= 10<sup>7</sup></code></li>
</ul>