659. Split Array into Consecutive Subsequences

探讨如何将升序排列且可能包含重复元素的整数数组拆分成多个子序列,每个子序列至少包含三个连续整数。通过使用两个哈希映射实现解决方案,并确保所有元素都能正确分配到相应的子序列中。

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

You are given an integer array sorted in ascending order (may contain duplicates), you need to split them into several subsequences, where each subsequences consist of at least 3 consecutive integers. Return whether you can make such a split.

Example 1:

Input: [1,2,3,3,4,5]
Output: True
Explanation:
You can split them into two consecutive subsequences : 
1, 2, 3
3, 4, 5

 

Example 2:

Input: [1,2,3,3,4,4,5,5]
Output: True
Explanation:
You can split them into two consecutive subsequences : 
1, 2, 3, 4, 5
3, 4, 5

 

Example 3:

Input: [1,2,3,4,4,5]
Output: False

I don't know how to solve this problem from the beginning, then I search for the answer in the discussion. Basically, for every element, we have two ways to handle it. We can either start a new consequence using this element or we can add this element to an existed consequence. If we can't, return False, because there is no way to deal with this element.

 

We have to maintain two hashmaps. One is Remaining, which indicates those elements we haven't placed yet. Another one is end[i], which indicates the counts end with i.

 

class Solution(object):
    def isPossible(self, nums):
        """
        :type nums: List[int]
        :rtype: bool
        """
        remain=collections.Counter(nums)
        end=collections.Counter()
        for item in nums:
            if not remain[item]:
                continue
            remain[item]-=1
            if remain[item+1] and remain[item+2]:
                remain[item+1]-=1
                remain[item+2]-=1
                end[item+2]+=1
            elif end[item-1]>0:
                end[item-1]-=1
                end[item]+=1
            else:
                return False
        return True

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值