题目描述
给你一个下标从 0 开始长度为 n
的整数数组 nums
和一个整数 k
,请你返回满足 0 <= i < j < n
,nums[i] == nums[j]
且 (i * j)
能被 k
整除的数对 (i, j)
的 数目 。
示例 1:
输入:nums = [3,1,2,2,2,1,3], k = 2
输出:4
解释:
总共有 4 对数符合所有要求:
- nums[0] == nums[6] 且 0 * 6 == 0 ,能被 2 整除。
- nums[2] == nums[3] 且 2 * 3 == 6 ,能被 2 整除。
- nums[2] == nums[4] 且 2 * 4 == 8 ,能被 2 整除。
- nums[3] == nums[4] 且 3 * 4 == 12 ,能被 2 整除。
示例 2:
输入:nums = [1,2,3,4], k = 1
输出:0
解释:由于数组中没有重复数值,所以没有数对 (i,j) 符合所有要求。
提示:
1 <= nums.length <= 100
1 <= nums[i], k <= 100
解法
方法一:枚举
我们先在 $[0, n)$ 的范围内枚举下标 $j$,然后在 $[0, j)$ 的范围内枚举下标 $i$,统计满足 $\textit{nums}[i] = \textit{nums}[j]$ 且 $(i \times j) \bmod k = 0$ 的数对个数。
时间复杂度 $O(n^2)$,其中 $n$ 是数组 $\textit{nums}$ 的长度。空间复杂度 $O(1)$。
| class Solution:
def countPairs(self, nums: List[int], k: int) -> int:
ans = 0
for j, y in enumerate(nums):
for i, x in enumerate(nums[:j]):
ans += int(x == y and i * j % k == 0)
return ans
|
| class Solution {
public int countPairs(int[] nums, int k) {
int ans = 0;
for (int j = 1; j < nums.length; ++j) {
for (int i = 0; i < j; ++i) {
ans += nums[i] == nums[j] && (i * j % k) == 0 ? 1 : 0;
}
}
return ans;
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12 | class Solution {
public:
int countPairs(vector<int>& nums, int k) {
int ans = 0;
for (int j = 1; j < nums.size(); ++j) {
for (int i = 0; i < j; ++i) {
ans += nums[i] == nums[j] && (i * j % k) == 0;
}
}
return ans;
}
};
|
| func countPairs(nums []int, k int) (ans int) {
for j, y := range nums {
for i, x := range nums[:j] {
if x == y && (i*j%k) == 0 {
ans++
}
}
}
return
}
|
| function countPairs(nums: number[], k: number): number {
let ans = 0;
for (let j = 1; j < nums.length; ++j) {
for (let i = 0; i < j; ++i) {
if (nums[i] === nums[j] && (i * j) % k === 0) {
++ans;
}
}
}
return ans;
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13 | impl Solution {
pub fn count_pairs(nums: Vec<i32>, k: i32) -> i32 {
let mut ans = 0;
for j in 1..nums.len() {
for (i, &x) in nums[..j].iter().enumerate() {
if x == nums[j] && (i * j) as i32 % k == 0 {
ans += 1;
}
}
}
ans
}
}
|
| int countPairs(int* nums, int numsSize, int k) {
int ans = 0;
for (int j = 1; j < numsSize; ++j) {
for (int i = 0; i < j; ++i) {
ans += (nums[i] == nums[j] && (i * j % k) == 0);
}
}
return ans;
}
|