leetcode - 2369. Check if There is a Valid Partition For The Array

Description

You are given a 0-indexed integer array nums. You have to partition the array into one or more contiguous subarrays.

We call a partition of the array valid if each of the obtained subarrays satisfies one of the following conditions:

The subarray consists of exactly 2 equal elements. For example, the subarray [2,2] is good.
The subarray consists of exactly 3 equal elements. For example, the subarray [4,4,4] is good.
The subarray consists of exactly 3 consecutive increasing elements, that is, the difference between adjacent elements is 1. For example, the subarray [3,4,5] is good, but the subarray [1,3,5] is not.

Return true if the array has at least one valid partition. Otherwise, return false.

Example 1:

Input: nums = [4,4,4,5,6]
Output: true
Explanation: The array can be partitioned into the subarrays [4,4] and [4,5,6].
This partition is valid, so we return true.

Example 2:

Input: nums = [1,1,1,2]
Output: false
Explanation: There is no valid partition for this array.

Constraints:

2 <= nums.length <= 10^5
1 <= nums[i] <= 10^6

Solution

Recursive, f(nums) = first 2-3 numbers and f(nums[i:]).

Time complexity: o ( n ) o(n) o(n)
Space complexity: o ( n ) o(n) o(n)

Code

class Solution:
    def validPartition(self, nums: List[int]) -> bool:
        memo = {}
        def helper(index: int) -> bool:
            if index in memo:
                return memo[index]
            if index == len(nums):
                return True
            if len(nums) - index < 2:
                memo[index] = False
                return memo[index]
            flag1, flag2, flag3 = False, False, False
            if nums[index] == nums[index + 1]:
                flag1 = True
            if index + 2 < len(nums):
                if nums[index] == nums[index + 1] and nums[index] == nums[index + 2]:
                    flag2 = True
                if nums[index] + 1 == nums[index + 1] and nums[index + 1] + 1 == nums[index + 2]:
                    flag3 = True
            memo[index] = (flag1 and helper(index + 2)) or (flag2 and helper(index + 3)) or (flag3 and helper(index + 3))
            return memo[index]
        return helper(0)
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值