LeetCode_454_四数相加II

题目链接

解题思路

  • 将数组分成两组,HashMap存一组,另一组和HashMap进行比对
  • 这种,可以分为三种情况
    • 0+4模式,时间复杂度为O(n^4)
    • 1+3模式,时间复杂度O(n) + O(n^3) = O(n^3)
    • 2 +2模式,时间复杂度O(n^2) + O(n^2) = O(n^2)
  • 显然我们选择2+2模式。以AB为一组,先使用二重循环遍历,并将所有的A[i] + B[j]的值和它的出现次数存入HashMap中,对于CD,同样使用二重循环进行遍历,当遍历到C[i] + D[j]时,如果-(C[i] + D[j])出现在HashMap中,那么就+1。

AC代码

class Solution {
    public int fourSumCount(int[] A, int[] B, int[] C, int[] D) {
        Map<Integer, Integer> map = new HashMap<>();
        int ans = 0;
        for (int item : A) {
            for (int value : B) {
                int sum_AB = item + value;
                if (map.containsKey(sum_AB))
                    map.put(sum_AB, map.get(sum_AB) + 1);
                else
                    map.put(sum_AB, 1);
            }
        }
        for (int item : C) {
            for (int value : D) {
                int sum_CD = -(item + value);
                if (map.containsKey(sum_CD))
                    ans += map.get(sum_CD);
            }
        }
        return ans;
    }
}

本地测试代码

package com.company;

import java.util.HashMap;
import java.util.Map;

public class Solution_454 {
    public static int fourSumCount(int[] A, int[] B, int[] C, int[] D) {
        Map<Integer, Integer> map = new HashMap<>();
        int ans = 0;
        for (int item : A) {
            for (int value : B) {
                int sum_AB = item + value;
                if (map.containsKey(sum_AB))
                    map.put(sum_AB, map.get(sum_AB) + 1);
                else
                    map.put(sum_AB, 1);
            }
        }
        for (int item : C) {
            for (int value : D) {
                int sum_CD = -(item + value);
                if (map.containsKey(sum_CD))
                    ans += map.get(sum_CD);
            }
        }
        return ans;
    }

    public static void main(String[] args) {
        System.out.println(fourSumCount(new int[]{1, 2}, new int[]{-2, -1}, new int[]{-1, 2}, new int[]{0, 2}));
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值