1422. Maximum Score After Splitting a String - Detailed Explanation
Problem Statement
You are given a binary string s (a string consisting only of '0'
s and '1'
s). You must split s into two non-empty substrings:
- left substring (the beginning part)
- right substring (the remaining part)
The score of a split is defined as:
- Score = (Number of
'0'
s in the left substring) + (Number of'1'
s in the right substring)
Your goal is to find the maximum possible score you can achieve by choosing an appropriate split point.
Example Inputs and Explanations
-
Example 1
- Input:
s = "011101"
- Explanation:
Consider splitting after the first character:- Left substring:
"0"
→ contains 1 zero - Right substring:
"11101"
→ contains 4 ones - Score = 1 + 4 = 5
- Left substring:
- Output:
5
- Input:
-
Example 2
- Input:
s = "00111"
- Explanation:
One optimal split is after the second character:- Left substring:
"00"
→ contains 2 zeros - Right substring:
"111"
→ contains 3 ones - Score = 2 + 3 = 5
- Left substring:
- Output:
5
- Input:
-
Example 3
- Input:
s = "1111"
- Explanation:
For a string with all ones, the only zeros come from the left substring if any—since there are none, you maximize the ones on the right.
If you split after the first character:- Left substring:
"1"
→ contains 0 zeros - Right substring:
"111"
→ contains 3 ones - Score = 0 + 3 = 3
- Left substring:
- Output:
3
- Input:
Constraints
- 2 <= s.length <= 500
- s consists of only
'0'
and'1'
characters. - Both substrings after splitting must be non-empty.
Hints Before Diving Into the Solution
-
Hint 1:
Think about what the score really represents. You are adding two counts:- The count of
'0'
s from the left side. - The count of
'1'
s from the right side.
- The count of
-
Hint 2:
Consider precomputing the total number of'1'
s in the entire string. Then, as you move the split point from left to right, update:- A running count of
'0'
s encountered (for the left substring). - A decrement in the total count of
'1'
s when you pass a'1'
(for the right substring).
- A running count of
This approach allows you to compute the score for each possible split efficiently.
Approaches to Solve the Problem
Approach 1: Brute Force
Idea
- For each possible split index:
- Count the number of
'0'
s in the left substring. - Count the number of
'1'
s in the right substring. - Compute the score and track the maximum score.
- Count the number of
Steps
- Loop through every valid split index (from index 1 to n-1).
- For each split, use two loops (or slicing with count operations) to count
'0'
s and'1'
s. - Keep track of the maximum score found.
Drawbacks
- Time Complexity: O(n²) in the worst case because for each split you count characters in both substrings.
- Although acceptable for small strings (n ≤ 500), it is not optimal.
Approach 2: Optimal Single-Pass Solution
Idea
- Precompute the total count of
'1'
s in the string. - As you move the split index from left to right:
- Maintain a running count of
'0'
s for the left substring. - Adjust the right substring’s count of
'1'
s by subtracting any'1'
that you pass. - Compute the score at each split as (zeros count) + (remaining ones count) and update the maximum score.
- Maintain a running count of
Steps
- Calculate
totalOnes
= total number of'1'
s in s. - Initialize
zerosCount
= 0 andmaxScore
= 0. - Iterate over the string from index 0 to n-2 (since both parts must be non-empty):
- If
s[i]
is'0'
, incrementzerosCount
. - If
s[i]
is'1'
, decrementtotalOnes
(since this'1'
moves from right to left). - Compute the current score as
zerosCount + totalOnes
. - Update
maxScore
if the current score is higher.
- If
- Return
maxScore
.
Advantages
- Time Complexity: O(n) because it uses a single pass.
- Space Complexity: O(1).
Step-by-Step Walkthrough with Visual Example
Let’s use the optimal approach on the example s = "011101".
-
Initial Calculation:
- Total Ones (totalOnes): Count all
'1'
s in the string → There are 4 ones. - Zeros Count (zerosCount): Start at 0.
- maxScore: Initially 0.
- Total Ones (totalOnes): Count all
-
Iterate over the string (valid indices 0 to 4):
Index Character Action Taken zerosCount totalOnes (after update) Score = zerosCount + totalOnes maxScore 0 '0' Increment zerosCount 1 4 1 + 4 = 5 5 1 '1' Decrement totalOnes (pass a '1' to left) 1 3 1 + 3 = 4 5 2 '1' Decrement totalOnes 1 2 1 + 2 = 3 5 3 '1' Decrement totalOnes 1 1 1 + 1 = 2 5 4 '0' Increment zerosCount 2 1 2 + 1 = 3 5 -
Result: The maximum score found is 5.
Code Implementation
Python Implementation
Java Implementation
Complexity Analysis
-
Brute Force Approach:
- Time Complexity: O(n²) because for each possible split (n choices), you count characters in O(n) time.
- Space Complexity: O(1).
-
Optimal Single-Pass Approach:
- Time Complexity: O(n) since it requires one traversal of the string.
- Space Complexity: O(1) as only a few counters are used.
Common Mistakes & Edge Cases
Common Mistakes
-
Incorrect Split Boundaries:
Forgetting that the split must leave both substrings non-empty. Always loop untillen(s) - 1
. -
Miscalculating Counts:
Not properly updating the count of'1'
s in the right substring when moving the split point can lead to errors. -
Off-by-One Errors:
Ensure your loop correctly iterates over valid split indices.
Edge Cases
-
Minimum Length String:
Whens
has only 2 characters, the only valid split is between them. -
Uniform Strings:
When the string consists of only one type of character (all'0'
s or all'1'
s), the maximum score will be determined solely by the count on one side. For example,"1111"
results in a maximum score of3
(all ones on the right when split after the first character).
Alternative Variations and Related Problems
Alternative Problem Variations
-
Reversed Score Calculation:
What if the score was defined as the count of'1'
s in the left substring plus the count of'0'
s in the right substring? -
Multiple Splits:
Problems that ask to split the string into more than two parts with different scoring rules. -
Different Character Sets:
Extending the idea to strings that contain more than two characters, where each character might have a different score.
Related Problems for Further Practice
-
Split a String in Balanced Strings:
Find splits where the number of'L'
and'R'
characters are equal. -
Binary Subarrays With Sum:
Count subarrays in a binary array that sum up to a given value. -
Longest Substring Without Repeating Characters:
A common sliding-window problem on strings. -
Minimum Swaps to Group All 1's Together:
An array problem involving counting and window sliding.
GET YOUR FREE
Coding Questions Catalog
