将一个数组分成四个和相等的子数组 Matchsticks to Square

本文介绍了一种算法,用于判断是否能使用给定火柴棒构成一个正方形。通过将问题转化为将数组分为四个和相等的子数组,文章详细解释了如何利用递归和深度优先搜索实现这一目标。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

问题:

Remember the story of Little Match Girl? By now, you know exactly what matchsticks the little match girl has, please find out a way you can make one square by using up all those matchsticks. You should not break any stick, but you can link them up, and each matchstick must be used exactly one time.

Your input will be several matchsticks the girl has, represented with their stick length. Your output will either be true or false, to represent whether you could make one square using all the matchsticks the little match girl has.

Example 1:

Input: [1,1,2,2,2]
Output: true
Explanation: You can form a square with length 2, one side of the square came two sticks with length 1.

Example 2:

Input: [3,3,3,3,4]
Output: false
Explanation: You cannot find a way to form a square with all the matchsticks.

Note:

  1. The length sum of the given matchsticks is in the range of 0 to 10 ^ 9.
  2. The length of the given matchstick array will not exceed 15.

解决:

①  跟之前有道题Partition Equal Subset Sum有点像,那道题问我们能不能将一个数组分成和相等的两个子数组,而这道题实际上是让我们将一个数组分成四个和相等的子数组

先给数组从大到小的顺序排序,这样大的数字先加,如果超过target了,就直接跳过了后面的再次调用递归的操作。

我们建立一个长度为4的数组sums来保存每个边的长度和,我们希望每条边都等于target,数组总和的四分之一。然后我们遍历sums中的每条边,我们判断如果加上数组中的当前数字大于target,那么我们跳过,如果没有,我们就加上这个数字,然后对数组中下一个位置调用递归,如果返回为真,我们返回true,否则我们再从sums中对应位置将这个数字减去继续循环。

class Solution { //39ms
    public boolean makesquare(int[] nums) {
        if (nums == null || nums.length < 4) return false;
        int sum = 0;
        for (int n : nums){
            sum += n;
        }
        if (sum % 4 != 0) return false;
        int[] sums = new int[4];
        Arrays.sort(nums);
        return dfs(nums,sums,nums.length - 1,sum / 4);
    }
    public boolean dfs(int[] nums,int[] sums,int i,int target){
        if (i < 0){
            return sums[0] == target && sums[1] == target && sums[2] == target;
        }
        for (int j = 0;j < 4;j ++){
            if (sums[j] + nums[i] > target) continue;
            sums[j] += nums[i];
            if (dfs(nums,sums,i - 1,target)) return true;
            sums[j] -= nums[i];
        }
        return false;
    }
}

转载于:https://my.oschina.net/liyurong/blog/1603310

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值