LeetCode 0471. Encode String with Shortest Length Solution in Java, Python, C++, JavaScript, Go & Rust | Explanation + Code

CoderIndeed
0
0471. Encode String with Shortest Length

Description

Given a string s, encode the string such that its encoded length is the shortest.

The encoding rule is: k[encoded_string], where the encoded_string inside the square brackets is being repeated exactly k times. k should be a positive integer.

If an encoding process does not make the string shorter, then do not encode it. If there are several solutions, return any of them.

 

Example 1:

Input: s = "aaa"
Output: "aaa"
Explanation: There is no way to encode it such that it is shorter than the input string, so we do not encode it.

Example 2:

Input: s = "aaaaa"
Output: "5[a]"
Explanation: "5[a]" is shorter than "aaaaa" by 1 character.

Example 3:

Input: s = "aaaaaaaaaa"
Output: "10[a]"
Explanation: "a9[a]" or "9[a]a" are also valid solutions, both of them have the same length = 5, which is the same as "10[a]".

 

Constraints:

  • 1 <= s.length <= 150
  • s consists of only lowercase English letters.

Solutions

Solution 1

PythonJavaC++GoTypeScript
class Solution: def encode(self, s: str) -> str: def g(i: int, j: int) -> str: t = s[i : j + 1] if len(t) < 5: return t k = (t + t).index(t, 1) if k < len(t): cnt = len(t) // k return f"{cnt}[{f[i][i + k - 1]}]" return t n = len(s) f = [[None] * n for _ in range(n)] for i in range(n - 1, -1, -1): for j in range(i, n): f[i][j] = g(i, j) if j - i + 1 > 4: for k in range(i, j): t = f[i][k] + f[k + 1][j] if len(f[i][j]) > len(t): f[i][j] = t return f[0][-1](code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !