Skip to content

1531. String Compression II

Description

Run-length encoding is a string compression method that works by replacing consecutive identical characters (repeated 2 or more times) with the concatenation of the character and the number marking the count of the characters (length of the run). For example, to compress the string "aabccc" we replace  by  and replace  by . Thus the compressed string becomes

Notice that in this problem, we are not adding '1' after single characters.

Given a string s and an integer k. You need to delete at most k characters from s such that the run-length encoded version of s has minimum length.

Find the minimum length of the run-length encoded version of s after deleting at most k characters.

 

Example 1:

Input: s = "aaabcccd", k = 2
Output: 4
Explanation: Compressing s without deleting anything will give us "a3bc3d" of length 6. Deleting any of the characters 'a' or 'c' would at most decrease the length of the compressed string to 5, for instance delete 2 'a' then we will have s = "abcccd" which compressed is abc3d. Therefore, the optimal way is to delete 'b' and 'd', then the compressed version of s will be "a3c3" of length 4.

Example 2:

Input: s = "aabbaa", k = 2
Output: 2
Explanation: If we delete both 'b' characters, the resulting compressed string would be "a4" of length 2.

Example 3:

Input: s = "aaaaaaaaaaa", k = 0
Output: 3
Explanation: Since k is zero, we cannot delete anything. The compressed string is "a11" of length 3.

 

Constraints:

  • 1 <= s.length <= 100
  • 0 <= k <= s.length
  • s contains only lowercase English letters.

 

Solutions

Solution: Dynamic Programming

  • Time complexity: O(n2k)
  • Space complexity: O(n2k)

 

JavaScript

js
/**
 * @param {string} s
 * @param {number} k
 * @return {number}
 */
const getLengthOfOptimalCompression = function (s, k) {
  const n = s.length;
  const memo = new Map();

  const getLength = count => 1 + (count > 1 ? `${count}`.length : 0);

  const getMinCompressLength = (index, remove, prevStr, count) => {
    if (index >= n) return count <= k - remove ? 0 : getLength(count);
    const key = `${index},${remove},${prevStr},${count}`;

    if (memo.has(key)) return memo.get(key);
    const str = s[index];
    const isConcatenation = str === prevStr;
    let result =
      !prevStr || isConcatenation
        ? getMinCompressLength(index + 1, remove, str, count + 1)
        : getLength(count) + getMinCompressLength(index + 1, remove, str, 1);

    if (remove < k) {
      const removeLength = getMinCompressLength(index + 1, remove + 1, prevStr, count);

      result = Math.min(removeLength, result);
    }

    memo.set(key, result);

    return result;
  };

  return getMinCompressLength(0, 0, '', 0);
};

Released under the MIT license