3114. Latest Time You Can Obtain After Replacing Characters
SourceWeekly Contest 393 Q1DifficultyEasyRating1290
Description
You are given a string s representing a 12-hour format time where some of the digits (possibly none) are replaced with a "?".
12-hour times are formatted as "HH:MM", where HH is between 00 and 11, and MM is between 00 and 59. The earliest 12-hour time is 00:00, and the latest is 11:59.
You have to replace all the "?" characters in s with digits such that the time we obtain by the resulting string is a valid 12-hour format time and is the latest possible.
Return the resulting string.
Example 1:
Input: s = "1?:?4"
Output: "11:54"
Explanation: The latest 12-hour format time we can achieve by replacing "?" characters is "11:54".
Example 2:
Input: s = "0?:5?"
Output: "09:59"
Explanation: The latest 12-hour format time we can achieve by replacing "?" characters is "09:59".
Constraints:
s.length == 5s[2]is equal to the character":".- All characters except
s[2]are digits or"?"characters. - The input is generated such that there is at least one time between
"00:00"and"11:59"that you can obtain after replacing the"?"characters.
Solutions
Solution 1: Enumeration
Thinking
There are only \(12\times 60\) valid times. Enumerating hour and minute from large to small and matching the pattern on non-? positions yields the latest feasible clock at the first hit.
The search space is constant, so backtracking is unnecessary. Walking from \(11{:}59\) down to \(00{:}00\) guarantees the lexicographically latest time.
Generate each HH:MM in that order, compare against \(s\) while treating ? as wild, and return the first match.
We can enumerate all times from large to small, where the hour \(h\) ranges from \(11\) to \(0\), and the minute \(m\) ranges from \(59\) to \(0\). For each time \(t\), we check whether each digit of \(t\) matches the corresponding digit in \(s\) (if the corresponding digit in \(s\) is not "?"). If it does, then we have found the answer and return \(t\).
The time complexity is \(O(h \times m)\), where \(h = 12\) and \(m = 60\). The space complexity is \(O(1)\).
1 2 3 4 5 6 7 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
Solution 2: Judge Each Digit
Thinking
Full enumeration is constant-time yet still formats hundreds of candidates. Each digit's range under the 12-hour clock can be written down directly.
The hour tens digit is \(0\) or \(1\), the ones digit is at most \(1\) when the tens digit is \(1\), the minute tens digit is at most \(5\), and the ones digit may be \(9\).
Replace each ? from left to right by the largest still-valid digit: decide \(s[0]\) then \(s[1]\), and fill the minute digits with \(5\) and \(9\). One pass suffices.
We can judge each digit of \(s\) one by one. If it is "?", we determine the value of this digit based on the characters before and after it. Specifically, we have the following rules:
- If \(s[0]\) is "?", then the value of \(s[0]\) should be "1" or "0", depending on the value of \(s[1]\). If \(s[1]\) is "?" or \(s[1]\) is less than "2", then the value of \(s[0]\) should be "1", otherwise the value of \(s[0]\) should be "0".
- If \(s[1]\) is "?", then the value of \(s[1]\) should be "1" or "9", depending on the value of \(s[0]\). If \(s[0]\) is "1", then the value of \(s[1]\) should be "1", otherwise the value of \(s[1]\) should be "9".
- If \(s[3]\) is "?", then the value of \(s[3]\) should be "5".
- If \(s[4]\) is "?", then the value of \(s[4]\) should be "9".
The time complexity is \(O(1)\), and the space complexity is \(O(1)\).
1 2 3 4 5 6 7 8 9 10 11 12 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |