Leetcode 927. Three Equal Parts

Posted SnailTyan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 927. Three Equal Parts相关的知识,希望对你有一定的参考价值。

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

2. Solution

**解析:**Version 1,由于数组分为三部分,因此各部分中1的个数相等是三部分相等的前提条件之一,因此先计算数组的总和,如果和为0,则i,j的位置是满足二者关系的任意位置,因此直接返回最简单的[0,2]即可,如果总和除3的余数不为0,则一定构不成三部分相等,直接返回[-1,-1],否则,则根据三部分1的个数将数组先分为三部分,由于三部分第一个1之前的0都无效,因此,将i,j,k三部分分别定位到第一个1的位置,由于最后一部分最后一个1之后的0是有效位,因此遍历区间为第三部分的第一个1到最后一位,第一部分及第二部分的对应位置上的数字应该都与第三部分对应位置的数字相等,如果不相等,则不能分隔数组,最后根据对应的位置关系,返回[i-1,j]即可。Version 2直接通过index方法来获取三部分的第一个1

  • Version 1
class Solution:
    def threeEqualParts(self, arr: List[int]) -> List[int]:
        total = sum(arr)
        if total == 0:
            return [0, 2]
        if total % 3 != 0:
            return [-1, -1]
        n = total // 3
        count = 0
        for index in range(len(arr)):
            if arr[index] == 1:
                count += 1
                if count == 1:
                    i = index
                elif count == n + 1:
                    j = index
                elif count == 2 * n + 1:
                    k = index

        while k < len(arr):
            if arr[i] == arr[j] and arr[j] == arr[k]:
                i += 1
                j += 1
                k += 1
            else:
                return [-1, -1]
        return [i-1, j]

Reference

  1. https://leetcode.com/problems/three-equal-parts/

以上是关于Leetcode 927. Three Equal Parts的主要内容,如果未能解决你的问题,请参考以下文章

力扣 每日一题 927. 三等分难度:困难

LeetCode 0927. 三等分

力扣 每日一题 927. 三等分难度:困难,rating: 1994(思维+后缀字符串+bitset技巧)

LeetCode 1013. Partition Array Into Three Parts With Equal Sum

(Easy) Partition Array Into Three Parts With Equal Sum - LeetCode

LeetCode --- 1013. Partition Array Into Three Parts With Equal Sum 解题报告