题目
给定一个整数数组和一个整数 k, 你需要在数组里找到不同的 k-diff 数对。这里将 k-diff 数对定义为一个整数对 (i, j), 其中 i 和 j 都是数组中的数字,且两数之差的绝对值是 k.
示例 1:
输入: [3, 1, 4, 1, 5], k = 2
输出: 2
解释: 数组中有两个 2-diff 数对, (1, 3) 和 (3, 5)。
尽管数组中有两个1,但我们只应返回不同的数对的数量。
示例 2:
输入:[1, 2, 3, 4, 5], k = 1
输出: 4
解释: 数组中有四个 1-diff 数对, (1, 2), (2, 3), (3, 4) 和 (4, 5)。
示例 3:
输入: [1, 3, 1, 5, 4], k = 0
输出: 1
解释: 数组中只有一个 0-diff 数对,(1, 1)。
注意:
数对 (i, j) 和数对 (j, i) 被算作同一数对。
数组的长度不超过10,000。
所有输入的整数的范围在 [-1e7, 1e7]。
C++代码
#include <iostream>
#include <vector>
#include <map>
#include <set>
using namespace std;
class Solution {
public:
int findPairs(vector<int>& nums, int k) {
if (nums.empty()) return 0;
sort(nums.begin(), nums.end());
int count = 0;
set<pair<int, int>> pairs;
pair<int, int> pair;
for (int i = 0; i < nums.size() - 1; ++i) {
for (int j = i + 1; j < nums.size(); ++j) {
pair = {nums[i], nums[j]};
if (nums[j] - nums[i] == k && pairs.count(pair) == 0) {
pairs.insert(pair);
++count;
break;
} else if (nums[j] - nums[i] > k) break;
}
}
return count;
}
};
int main(int argc, const char * argv[]) {
// insert code here...
Solution solution;
vector<int> items;
int k;
items = {3, 1, 4, 1, 5};
k = 2;
cout << solution.findPairs(items, k) << endl;
items = {1, 2, 3, 4, 5};
k = 1;
cout << solution.findPairs(items, k) << endl;
items = {1, 3, 1, 5, 4};
k = 0;
cout << solution.findPairs(items, k) << endl;
items = {};
k = 0;
cout << solution.findPairs(items, k) << endl;
return 0;
}
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/k-diff-pairs-in-an-array
网友评论