返回介绍

solution / 0900-0999 / 0982.Triples with Bitwise AND Equal To Zero / README_EN

发布于 2024-06-17 01:03:32 字数 4046 浏览 0 评论 0 收藏 0

982. Triples with Bitwise AND Equal To Zero

中文文档

Description

Given an integer array nums, return _the number of AND triples_.

An AND triple is a triple of indices (i, j, k) such that:

  • 0 <= i < nums.length
  • 0 <= j < nums.length
  • 0 <= k < nums.length
  • nums[i] & nums[j] & nums[k] == 0, where & represents the bitwise-AND operator.

 

Example 1:

Input: nums = [2,1,3]
Output: 12
Explanation: We could choose the following i, j, k triples:
(i=0, j=0, k=1) : 2 & 2 & 1
(i=0, j=1, k=0) : 2 & 1 & 2
(i=0, j=1, k=1) : 2 & 1 & 1
(i=0, j=1, k=2) : 2 & 1 & 3
(i=0, j=2, k=1) : 2 & 3 & 1
(i=1, j=0, k=0) : 1 & 2 & 2
(i=1, j=0, k=1) : 1 & 2 & 1
(i=1, j=0, k=2) : 1 & 2 & 3
(i=1, j=1, k=0) : 1 & 1 & 2
(i=1, j=2, k=0) : 1 & 3 & 2
(i=2, j=0, k=1) : 3 & 2 & 1
(i=2, j=1, k=0) : 3 & 1 & 2

Example 2:

Input: nums = [0,0,0]
Output: 27

 

Constraints:

  • 1 <= nums.length <= 1000
  • 0 <= nums[i] < 216

Solutions

Solution 1

class Solution:
  def countTriplets(self, nums: List[int]) -> int:
    cnt = Counter(x & y for x in nums for y in nums)
    return sum(v for xy, v in cnt.items() for z in nums if xy & z == 0)
class Solution {
  public int countTriplets(int[] nums) {
    int mx = 0;
    for (int x : nums) {
      mx = Math.max(mx, x);
    }
    int[] cnt = new int[mx + 1];
    for (int x : nums) {
      for (int y : nums) {
        cnt[x & y]++;
      }
    }
    int ans = 0;
    for (int xy = 0; xy <= mx; ++xy) {
      for (int z : nums) {
        if ((xy & z) == 0) {
          ans += cnt[xy];
        }
      }
    }
    return ans;
  }
}
class Solution {
public:
  int countTriplets(vector<int>& nums) {
    int mx = *max_element(nums.begin(), nums.end());
    int cnt[mx + 1];
    memset(cnt, 0, sizeof cnt);
    for (int& x : nums) {
      for (int& y : nums) {
        cnt[x & y]++;
      }
    }
    int ans = 0;
    for (int xy = 0; xy <= mx; ++xy) {
      for (int& z : nums) {
        if ((xy & z) == 0) {
          ans += cnt[xy];
        }
      }
    }
    return ans;
  }
};
func countTriplets(nums []int) (ans int) {
  mx := slices.Max(nums)
  cnt := make([]int, mx+1)
  for _, x := range nums {
    for _, y := range nums {
      cnt[x&y]++
    }
  }
  for xy := 0; xy <= mx; xy++ {
    for _, z := range nums {
      if xy&z == 0 {
        ans += cnt[xy]
      }
    }
  }
  return
}
function countTriplets(nums: number[]): number {
  const mx = Math.max(...nums);
  const cnt: number[] = Array(mx + 1).fill(0);
  for (const x of nums) {
    for (const y of nums) {
      cnt[x & y]++;
    }
  }
  let ans = 0;
  for (let xy = 0; xy <= mx; ++xy) {
    for (const z of nums) {
      if ((xy & z) === 0) {
        ans += cnt[xy];
      }
    }
  }
  return ans;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文