1422. Maximum Score After Splitting a String - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

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

  1. 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
    • Output: 5
  2. 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
    • Output: 5
  3. 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
    • Output: 3

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.
  • 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).

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.

Steps

  1. Loop through every valid split index (from index 1 to n-1).
  2. For each split, use two loops (or slicing with count operations) to count '0's and '1's.
  3. 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.

Steps

  1. Calculate totalOnes = total number of '1's in s.
  2. Initialize zerosCount = 0 and maxScore = 0.
  3. Iterate over the string from index 0 to n-2 (since both parts must be non-empty):
    • If s[i] is '0', increment zerosCount.
    • If s[i] is '1', decrement totalOnes (since this '1' moves from right to left).
    • Compute the current score as zerosCount + totalOnes.
    • Update maxScore if the current score is higher.
  4. 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".

  1. 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.
  2. Iterate over the string (valid indices 0 to 4):

    IndexCharacterAction TakenzerosCounttotalOnes (after update)Score = zerosCount + totalOnesmaxScore
    0'0'Increment zerosCount141 + 4 = 55
    1'1'Decrement totalOnes (pass a '1' to left)131 + 3 = 45
    2'1'Decrement totalOnes121 + 2 = 35
    3'1'Decrement totalOnes111 + 1 = 25
    4'0'Increment zerosCount212 + 1 = 35
  3. Result: The maximum score found is 5.

Code Implementation

Python Implementation

Python3
Python3

. . . .

Java Implementation

Java
Java

. . . .

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 until len(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:
    When s 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 of 3 (all ones on the right when split after the first character).

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.

  • 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.

TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
What language is used for OpenAI?
What is QA industry standard?
How do I know if I am a full-stack developer?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;