【LeetCode刷题】1512. 好数对的数目

给你一个整数数组 nums 。

如果一组数字 (i,j) 满足 nums[i] == nums[j] 且 i < j ,就可以认为这是一组 好数对 。

返回好数对的数目。

示例 1:

输入:nums = [1,2,3,1,1,3]
输出:4
解释:有 4 组好数对,分别是 (0,3), (0,4), (3,4), (2,5) ,下标从 0 开始

示例 2:

输入:nums = [1,1,1,1]

输出:6

解释:数组中的每组数字都是好数对

示例 3:

输入:nums = [1,2,3]

输出:0

提示:

  • 1 <= nums.length <= 100
  • 1 <= nums[i] <= 100

===============================================================================================================================================================================================================================================================================================

分析:

法一:两层循环匹配

class Solution {
    public int numIdenticalPairs(int[] nums) {
        int count = 0;
        for(int i=0;i

 【LeetCode刷题】1512. 好数对的数目_第1张图片

法二:

官方给出的提示:Count how many times each number appears. If a number appears n times, then n * (n – 1) // 2 good pairs can be made with this number.

计算每个元素出现的次数。如果一个元素出现了n次,那么就有n*(n-1)/2个好数对。

加上题目给的限定条件:

  • 1 <= nums.length <= 100
  • 1 <= nums[i] <= 100
class Solution {
    public int numIdenticalPairs(int[] nums) {
        int[] res=new int[101];                   //数组最大长度
        for(int i=0;i

【LeetCode刷题】1512. 好数对的数目_第2张图片

参考:https://leetcode-cn.com/problems/number-of-good-pairs/submissions/

贴一个解法:https://leetcode-cn.com/problems/number-of-good-pairs/solution/zhe-gu-ji-shi-wo-xie-zen-yao-duo-ti-yi-lai-zui-dua/

class Solution {
    public int numIdenticalPairs(int[] nums) {
        int ans = 0;
        //因为 1<= nums[i] <= 100  所以申请大小为100的数组
        //temp用来记录num的个数
        int[] temp = new int[100];
        /*
        从前面开始遍历nums
        假设nums = [1,1,1,1]
        第一遍
        temp是[0,0,0,0]
        ans+=0;
        temp[0]++;
        第二遍
        temp是[1,0,0,0]
        ans+=1;
        temp[0]++;
        第三遍
        temp=[2,0,0,0]
        ans+=2;
        temp[0]++;
        第四遍
        temp=[3,0,0,0]
        ans+=3;
        temp[0]++;
        */
        for (int num : nums) {
            /*
            这行代码可以写成
            ans+=temp[num - 1];
            temp[num - 1]++;
            */
            ans += temp[num - 1]++;
        }
        return ans;
    }
}

 

你可能感兴趣的:(刷题,数组,leetcode)