Problem Description
Alice and Bob take turns playing a game, with Alice starting first. You are given a string num
of even length consisting of digits and '?' characters. On each turn, a player will replace a '?' with any digit between '0' and '9'. The game ends when there are no more '?' characters. For Bob to win, the sum of the digits in the first half of num
must be equal to the sum of the digits in the second half. For Alice to win, the sums must not be equal. Assuming both play optimally, return true if Alice will win and false if Bob will win.
Key Insights
- The game involves manipulating '?' characters to achieve different sums for the two halves.
- Alice aims to create a situation where the two sums cannot be made equal, while Bob will try to ensure they can be.
- The number of '?' characters and their distribution between the two halves is crucial to determining the outcome.
- The sums of the fixed digits in both halves should be compared to the potential contributions from the '?' characters.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the input string num
. We traverse the string to calculate sums and counts of '?' characters.
Space Complexity: O(1), since we use a fixed amount of space for variables regardless of the input size.
Solution
To solve the problem, we will:
- Split the string into two halves.
- Calculate the sum of digits in both halves, ignoring '?' characters.
- Count the number of '?' characters in each half.
- Determine the maximum possible difference between the sums based on the '?' counts and the contributions they can make.
- Based on the calculated sum differences and the ability to manipulate '?' characters, conclude whether Alice can guarantee a win.