Class Solution
java.lang.Object
g1401_1500.s1422_maximum_score_after_splitting_a_string.Solution
1422 - Maximum Score After Splitting a String.<p>Easy</p>
<p>Given a string <code>s</code> of zeros and ones, <em>return the maximum score after splitting the string into two <strong>non-empty</strong> substrings</em> (i.e. <strong>left</strong> substring and <strong>right</strong> substring).</p>
<p>The score after splitting a string is the number of <strong>zeros</strong> in the <strong>left</strong> substring plus the number of <strong>ones</strong> in the <strong>right</strong> substring.</p>
<p><strong>Example 1:</strong></p>
<p><strong>Input:</strong> s = “011101”</p>
<p><strong>Output:</strong> 5</p>
<p><strong>Explanation:</strong> All possible ways of splitting s into two non-empty substrings are:</p>
<p>left = “0” and right = “11101”, score = 1 + 4 = 5</p>
<p>left = “01” and right = “1101”, score = 1 + 3 = 4</p>
<p>left = “011” and right = “101”, score = 1 + 2 = 3</p>
<p>left = “0111” and right = “01”, score = 1 + 1 = 2</p>
<p>left = “01110” and right = “1”, score = 2 + 1 = 3</p>
<p><strong>Example 2:</strong></p>
<p><strong>Input:</strong> s = “00111”</p>
<p><strong>Output:</strong> 5</p>
<p><strong>Explanation:</strong> When left = “00” and right = “111”, we get the maximum score = 2 + 3 = 5</p>
<p><strong>Example 3:</strong></p>
<p><strong>Input:</strong> s = “1111”</p>
<p><strong>Output:</strong> 3</p>
<p><strong>Constraints:</strong></p>
<ul>
<li><code>2 <= s.length <= 500</code></li>
<li>The string <code>s</code> consists of characters <code>'0'</code> and <code>'1'</code> only.</li>
</ul>
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
maxScore
-