class Solution {
public:
int findKOr(vector<int>& nums, int k) {
}
};
100111. 找出数组中的 K-or 值
给你一个下标从 0 开始的整数数组 nums
和一个整数 k
。
nums
中的 K-or 是一个满足以下条件的非负整数:
nums
中,至少存在 k
个元素的第 i
位值为 1 ,那么 K-or 中的第 i
位的值才是 1 。返回 nums
的 K-or 值。
注意 :对于整数 x
,如果 (2i AND x) == 2i
,则 x
中的第 i
位值为 1 ,其中 AND
为按位与运算符。
示例 1:
输入:nums = [7,12,9,8,9,15], k = 4 输出:9 解释:nums[0]、nums[2]、nums[4] 和 nums[5] 的第 0 位的值为 1 。 nums[0] 和 nums[5] 的第 1 位的值为 1 。 nums[0]、nums[1] 和 nums[5] 的第 2 位的值为 1 。 nums[1]、nums[2]、nums[3]、nums[4] 和 nums[5] 的第 3 位的值为 1 。 只有第 0 位和第 3 位满足数组中至少存在 k 个元素在对应位上的值为 1 。因此,答案为 2^0 + 2^3 = 9 。
示例 2:
输入:nums = [2,12,1,11,4,5], k = 6 输出:0 解释:因为 k == 6 == nums.length ,所以数组的 6-or 等于其中所有元素按位与运算的结果。因此,答案为 2 AND 12 AND 1 AND 11 AND 4 AND 5 = 0 。
示例 3:
输入:nums = [10,8,5,9,11,6,8], k = 1 输出:15 解释:因为 k == 1 ,数组的 1-or 等于其中所有元素按位或运算的结果。因此,答案为 10 OR 8 OR 5 OR 9 OR 11 OR 6 OR 8 = 15 。
提示:
1 <= nums.length <= 50
0 <= nums[i] < 231
1 <= k <= nums.length
原站题解
php 解法, 执行用时: 16 ms, 内存消耗: 20 MB, 提交时间: 2024-03-06 09:19:02
class Solution { /** * @param Integer[] $nums * @param Integer $k * @return Integer */ function findKOr($nums, $k) { $ans = 0; for ( $i = 0; $i < 31; $i++ ) { $cnt1 = 0; foreach ( $nums as $num ) { $cnt1 += $num >> $i & 1; } if ( $cnt1 >= $k ) { $ans |= 1 << $i; } } return $ans; } }
golang 解法, 执行用时: 4 ms, 内存消耗: 3.1 MB, 提交时间: 2023-10-30 07:40:18
func findKOr(nums []int, k int) (ans int) { for i := 0; i < 31; i++ { cnt1 := 0 for _, x := range nums { cnt1 += x >> i & 1 } if cnt1 >= k { ans |= 1 << i } } return }
cpp 解法, 执行用时: 8 ms, 内存消耗: 25.2 MB, 提交时间: 2023-10-30 07:40:01
class Solution { public: int findKOr(vector<int>& nums, int k) { int ans = 0; for (int i = 0; i < 31; i++) { int cnt1 = 0; for (int x : nums) { cnt1 += (x >> i) & 1; } if (cnt1 >= k) { ans |= 1 << i; } } return ans; } };
java 解法, 执行用时: 1 ms, 内存消耗: 41.7 MB, 提交时间: 2023-10-30 07:39:47
class Solution { public int findKOr(int[] nums, int k) { int ans = 0; for (int i = 0; i < 31; i++) { int cnt1 = 0; for (int x : nums) { cnt1 += (x >> i) & 1; } if (cnt1 >= k) { ans |= 1 << i; } } return ans; } }
python3 解法, 执行用时: 76 ms, 内存消耗: 16.1 MB, 提交时间: 2023-10-30 07:39:25
class Solution: def findKOr(self, nums: List[int], k: int) -> int: ans = 0 for i in range(31): cnt1 = sum(x >> i & 1 for x in nums) if cnt1 >= k: ans |= 1 << i return ans