Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    2155 - All Divisions With the Highest Score of a Binary Array.

    Medium

    You are given a 0-indexed binary array nums of length n. nums can be divided at index i (where 0 &lt;= i &lt;= n) into two arrays (possibly empty) <code>nums<sub>left</sub></code> and <code>nums<sub>right</sub></code>:

    • <code>nums<sub>left</sub></code> has all the elements of nums between index 0 and i - 1 (inclusive) , while <code>nums<sub>right</sub></code> has all the elements of nums between index i and n - 1 (inclusive).

    • If i == 0, <code>nums<sub>left</sub></code> is empty , while <code>nums<sub>right</sub></code> has all the elements of nums.

    • If i == n, <code>nums<sub>left</sub></code> has all the elements of nums, while <code>nums<sub>right</sub></code> is empty.

    The division score of an index i is the sum of the number of 0's in <code>nums<sub>left</sub></code> and the number of 1's in <code>nums<sub>right</sub></code>.

    Return all distinct indices that have the highest possible division score. You may return the answer in any order.

    Example 1:

    Input: nums = 0,0,1,0

    Output: 2,4

    Explanation: Division at index

    • 0: nums<sub>left</sub> is []. nums<sub>right</sub> is 0,0, **1** ,0. The score is 0 + 1 = 1.

    • 1: nums<sub>left</sub> is **0** . nums<sub>right</sub> is 0, **1** ,0. The score is 1 + 1 = 2.

    • 2: nums<sub>left</sub> is **0** , **0** . nums<sub>right</sub> is **1** ,0. The score is 2 + 1 = 3.

    • 3: nums<sub>left</sub> is **0** , **0** ,1. nums<sub>right</sub> is 0. The score is 2 + 0 = 2.

    • 4: nums<sub>left</sub> is **0** , **0** ,1, **0** . nums<sub>right</sub> is []. The score is 3 + 0 = 3.

    Indices 2 and 4 both have the highest possible division score 3.

    Note the answer 4,2 would also be accepted.

    Example 2:

    Input: nums = 0,0,0

    Output: 3

    Explanation: Division at index

    • 0: nums<sub>left</sub> is []. nums<sub>right</sub> is 0,0,0. The score is 0 + 0 = 0.

    • 1: nums<sub>left</sub> is **0** . nums<sub>right</sub> is 0,0. The score is 1 + 0 = 1.

    • 2: nums<sub>left</sub> is **0** , **0** . nums<sub>right</sub> is 0. The score is 2 + 0 = 2.

    • 3: nums<sub>left</sub> is **0** , **0** , **0** . nums<sub>right</sub> is []. The score is 3 + 0 = 3.

    Only index 3 has the highest possible division score 3.

    Example 3:

    Input: nums = 1,1

    Output: 0

    Explanation: Division at index

    • 0: nums<sub>left</sub> is []. nums<sub>right</sub> is **1** , **1** . The score is 0 + 2 = 2.

    • 1: nums<sub>left</sub> is 1. nums<sub>right</sub> is **1** . The score is 0 + 1 = 1.

    • 2: nums<sub>left</sub> is 1,1. nums<sub>right</sub> is []. The score is 0 + 0 = 0.

    Only index 0 has the highest possible division score 2.

    Constraints:

    • n == nums.length

    • <code>1 <= n <= 10<sup>5</sup></code>

    • nums[i] is either 0 or 1.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      Solution()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final List<Integer> maxScoreIndices(IntArray nums)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait