返回介绍

solution / 0500-0599 / 0532.K-diff Pairs in an Array / README_EN

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

532. K-diff Pairs in an Array

中文文档

Description

Given an array of integers nums and an integer k, return _the number of unique k-diff pairs in the array_.

A k-diff pair is an integer pair (nums[i], nums[j]), where the following are true:

  • 0 <= i, j < nums.length
  • i != j
  • |nums[i] - nums[j]| == k

Notice that |val| denotes the absolute value of val.

 

Example 1:

Input: nums = [3,1,4,1,5], k = 2
Output: 2
Explanation: There are two 2-diff pairs in the array, (1, 3) and (3, 5).
Although we have two 1s in the input, we should only return the number of unique pairs.

Example 2:

Input: nums = [1,2,3,4,5], k = 1
Output: 4
Explanation: There are four 1-diff pairs in the array, (1, 2), (2, 3), (3, 4) and (4, 5).

Example 3:

Input: nums = [1,3,1,5,4], k = 0
Output: 1
Explanation: There is one 0-diff pair in the array, (1, 1).

 

Constraints:

  • 1 <= nums.length <= 104
  • -107 <= nums[i] <= 107
  • 0 <= k <= 107

Solutions

Solution 1

class Solution:
  def findPairs(self, nums: List[int], k: int) -> int:
    vis, ans = set(), set()
    for v in nums:
      if v - k in vis:
        ans.add(v - k)
      if v + k in vis:
        ans.add(v)
      vis.add(v)
    return len(ans)
class Solution {
  public int findPairs(int[] nums, int k) {
    Set<Integer> vis = new HashSet<>();
    Set<Integer> ans = new HashSet<>();
    for (int v : nums) {
      if (vis.contains(v - k)) {
        ans.add(v - k);
      }
      if (vis.contains(v + k)) {
        ans.add(v);
      }
      vis.add(v);
    }
    return ans.size();
  }
}
class Solution {
public:
  int findPairs(vector<int>& nums, int k) {
    unordered_set<int> vis;
    unordered_set<int> ans;
    for (int& v : nums) {
      if (vis.count(v - k)) ans.insert(v - k);
      if (vis.count(v + k)) ans.insert(v);
      vis.insert(v);
    }
    return ans.size();
  }
};
func findPairs(nums []int, k int) int {
  vis := map[int]bool{}
  ans := map[int]bool{}
  for _, v := range nums {
    if vis[v-k] {
      ans[v-k] = true
    }
    if vis[v+k] {
      ans[v] = true
    }
    vis[v] = true
  }
  return len(ans)
}
impl Solution {
  pub fn find_pairs(mut nums: Vec<i32>, k: i32) -> i32 {
    nums.sort();
    let n = nums.len();
    let mut res = 0;
    let mut left = 0;
    let mut right = 1;
    while right < n {
      let num = i32::abs(nums[left] - nums[right]);
      if num == k {
        res += 1;
      }
      if num <= k {
        right += 1;
        while right < n && nums[right - 1] == nums[right] {
          right += 1;
        }
      } else {
        left += 1;
        while left < right && nums[left - 1] == nums[left] {
          left += 1;
        }
        if left == right {
          right += 1;
        }
      }
    }
    res
  }
}

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

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

发布评论

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