Class Solution
java.lang.Object
g2101_2200.s2155_all_divisions_with_the_highest_score_of_a_binary_array.Solution
2155 - All Divisions With the Highest Score of a Binary Array.<p>Medium</p>
<p>You are given a <strong>0-indexed</strong> binary array <code>nums</code> of length <code>n</code>. <code>nums</code> can be divided at index <code>i</code> (where <code>0 <= i <= n)</code> into two arrays (possibly empty) <code>nums<sub>left</sub></code> and <code>nums<sub>right</sub></code>:</p>
<ul>
<li><code>nums<sub>left</sub></code> has all the elements of <code>nums</code> between index <code>0</code> and <code>i - 1</code> <strong>(inclusive)</strong> , while <code>nums<sub>right</sub></code> has all the elements of nums between index <code>i</code> and <code>n - 1</code> <strong>(inclusive)</strong>.</li>
<li>If <code>i == 0</code>, <code>nums<sub>left</sub></code> is <strong>empty</strong> , while <code>nums<sub>right</sub></code> has all the elements of <code>nums</code>.</li>
<li>If <code>i == n</code>, <code>nums<sub>left</sub></code> has all the elements of nums, while <code>nums<sub>right</sub></code> is <strong>empty</strong>.</li>
</ul>
<p>The <strong>division score</strong> of an index <code>i</code> is the <strong>sum</strong> of the number of <code>0</code>’s in <code>nums<sub>left</sub></code> and the number of <code>1</code>’s in <code>nums<sub>right</sub></code>.</p>
<p>Return <em><strong>all distinct indices</strong> that have the <strong>highest</strong> possible <strong>division score</strong></em>. You may return the answer in <strong>any order</strong>.</p>
<p><strong>Example 1:</strong></p>
<p><strong>Input:</strong> nums = [0,0,1,0]</p>
<p><strong>Output:</strong> [2,4]</p>
<p><strong>Explanation:</strong> Division at index</p>
<ul>
<li>
<p>0: nums<sub>left</sub> is []. nums<sub>right</sub> is [0,0, <strong>1</strong> ,0]. The score is 0 + 1 = 1.</p>
</li>
<li>
<p>1: nums<sub>left</sub> is [<strong>0</strong> ]. nums<sub>right</sub> is [0, <strong>1</strong> ,0]. The score is 1 + 1 = 2.</p>
</li>
<li>
<p>2: nums<sub>left</sub> is [<strong>0</strong> , <strong>0</strong> ]. nums<sub>right</sub> is [<strong>1</strong> ,0]. The score is 2 + 1 = 3.</p>
</li>
<li>
<p>3: nums<sub>left</sub> is [<strong>0</strong> , <strong>0</strong> ,1]. nums<sub>right</sub> is [0]. The score is 2 + 0 = 2.</p>
</li>
<li>
<p>4: nums<sub>left</sub> is [<strong>0</strong> , <strong>0</strong> ,1, <strong>0</strong> ]. nums<sub>right</sub> is []. The score is 3 + 0 = 3.</p>
</li>
</ul>
<p>Indices 2 and 4 both have the highest possible division score 3.</p>
<p>Note the answer [4,2] would also be accepted.</p>
<p><strong>Example 2:</strong></p>
<p><strong>Input:</strong> nums = [0,0,0]</p>
<p><strong>Output:</strong> [3]</p>
<p><strong>Explanation:</strong> Division at index</p>
<ul>
<li>
<p>0: nums<sub>left</sub> is []. nums<sub>right</sub> is [0,0,0]. The score is 0 + 0 = 0.</p>
</li>
<li>
<p>1: nums<sub>left</sub> is [<strong>0</strong> ]. nums<sub>right</sub> is [0,0]. The score is 1 + 0 = 1.</p>
</li>
<li>
<p>2: nums<sub>left</sub> is [<strong>0</strong> , <strong>0</strong> ]. nums<sub>right</sub> is [0]. The score is 2 + 0 = 2.</p>
</li>
<li>
<p>3: nums<sub>left</sub> is [<strong>0</strong> , <strong>0</strong> , <strong>0</strong> ]. nums<sub>right</sub> is []. The score is 3 + 0 = 3.</p>
</li>
</ul>
<p>Only index 3 has the highest possible division score 3.</p>
<p><strong>Example 3:</strong></p>
<p><strong>Input:</strong> nums = [1,1]</p>
<p><strong>Output:</strong> [0]</p>
<p><strong>Explanation:</strong> Division at index</p>
<ul>
<li>
<p>0: nums<sub>left</sub> is []. nums<sub>right</sub> is [<strong>1</strong> , <strong>1</strong> ]. The score is 0 + 2 = 2.</p>
</li>
<li>
<p>1: nums<sub>left</sub> is [1]. nums<sub>right</sub> is [<strong>1</strong> ]. The score is 0 + 1 = 1.</p>
</li>
<li>
<p>2: nums<sub>left</sub> is [1,1]. nums<sub>right</sub> is []. The score is 0 + 0 = 0.</p>
</li>
</ul>
<p>Only index 0 has the highest possible division score 2.</p>
<p><strong>Constraints:</strong></p>
<ul>
<li><code>n == nums.length</code></li>
<li><code>1 <= n <= 10<sup>5</sup></code></li>
<li><code>nums[i]</code> is either <code>0</code> or <code>1</code>.</li>
</ul>
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
maxScoreIndices
-