Minimum Swaps to Group All 1's Together
Given an array of characters chars
, compress it using the following algorithm:
Begin with an empty string s
. For each group of consecutive repeating characters in chars
:
- If the group's length is
1
, append the character tos
. - Otherwise, append the character followed by the group's length.
The compressed string s
should not be returned separately, but instead, be stored in the input character array chars
. Note that group lengths that are 10
or longer will be split into multiple characters in chars
.
After you are done modifying the input array, return the new length of the array.
You must write an algorithm that uses only constant extra space.
Example 1:
Input: chars = ["a","a","b","b","c","c","c"]
Output: Return 6
, and the first 6 characters of the input array should be: ["a","2","b","2","c","3"]
Explanation: The groups are "aa"
, "bb"
, and "ccc"
. This compresses to "a2b2c3"
.
Example 2:
Input: chars = ["a"]
Output: Return 1
, and the first character of the input array should be: ["a"]
Explanation: The only group is "a"
, which remains uncompressed since it's a single character.
Example 3:
Input: chars = ["a","b","b","b","b","b","b","b","b","b","b","b","b"]
Output: Return 4
, and the first 4 characters of the input array should be: ["a","b","1","2"]
.
Explanation: The groups are "a"
and "bbbbbbbbbbbb"
. This compresses to "ab12"
.
Constraints:
1 <= chars.length <= 2000
chars[i]
is a lowercase English letter, uppercase English letter, digit, or symbol.
Solution
We wish to use two pointers in the same direction so solve this problem.
The two pointers are: the read
pointer (fast), and the write
pointer (slow).
The question is really similar to Move Zeros, where the fast pointer reads the contents and the slow pointer records the writing location.
So we will iterate (read) through chars
and count the number of consecutive occurrences of the curr
char.
During this process if we reach a new character, we will write the curr
character and its count
to the position where the write
pointer points to.
We will use a helper function compress_char
to help us write the compressed character according to the requirements (i.e. only append the length after the character if the length is greater than 1).
At the same time, we update the write
pointer to the position of the next write, which is exactly the length of the "new" array.
Implementation
1def compress(self, chars: List[str]) -> int:
2 def compress_char(write, curr, counter):
3 chars[write] = curr
4 write += 1
5 if counter == 1: # does not append length
6 return write
7 length = str(counter) # convert length to string
8 for c in length:
9 chars[write] = c
10 write += 1
11 return write
12 write, counter, curr = 0, 1, chars[0]
13 for read in range(1, len(chars)):
14 if chars[read] == curr:
15 counter += 1
16 else:
17 write = compress_char(write, curr, counter)
18 counter = 1
19 curr = chars[read]
20 write = compress_char(write, curr, counter)
21 return write
Ready to land your dream job?
Unlock your dream job with a 2-minute evaluator for a personalized learning plan!
Start EvaluatorDepth first search is equivalent to which of the tree traversal order?
Recommended Readings
Patterns The Shortest Path Algorithm for Coding Interviews The goal of AlgoMonster is to help you get a job in the shortest amount of time possible in a data driven way We compiled datasets of tech interview problems and broke them down by patterns This way we can determine the
Recursion Recursion is one of the most important concepts in computer science Simply speaking recursion is the process of a function calling itself Using a real life analogy imagine a scenario where you invite your friends to lunch https algomonster s3 us east 2 amazonaws com recursion jpg You first
Runtime Overview When learning about algorithms and data structures you'll frequently encounter the term time complexity This concept is fundamental in computer science and offers insights into how long an algorithm takes to complete given a certain input size What is Time Complexity Time complexity represents the amount of time
Got a question?ย Ask the Monster Assistantย anything you don't understand.
Still not clear? ย Submitย the part you don't understand to our editors. Or join ourย Discord and ask the community.