2182. Construct String With Repeat Limit - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

Problem Statement

You are given a string s consisting of lowercase English letters and an integer repeatLimit. Your task is to rearrange the characters of s to form a new string such that no character appears more than repeatLimit times consecutively.

Example Inputs and Outputs:

  1. Input: s = "cczazcc", repeatLimit = 3
    Output: "zzcccac"
    Explanation: One possible arrangement is "zzcccac", where no letter repeats more than 3 times in a row.

  2. Input: s = "aababab", repeatLimit = 2
    Output: "bbabaa"
    Explanation: The output "bbabaa" ensures no character appears more than 2 times consecutively.

Constraints:

  • 1 <= s.length <= 10^5
  • 1 <= repeatLimit <= s.length
  • s consists only of lowercase English letters.

Hints to Solve the Problem

  1. Sorting Approach: Consider sorting characters in descending order and then greedily build the string while respecting the limit for consecutive repeats.
  2. Greedy with Priority Queue: Use a max-heap (priority queue) to always pick the next largest valid character. If the current largest character has reached its repeat limit, temporarily use the next largest character.

Approaches to Solve the Problem

Approach 1: Sorting and Greedy Construction

Idea:

  • Sort the characters in descending order (by character value or frequency).

  • Greedily append the largest remaining character to the result. If a character would exceed the repeatLimit by appearing again, insert the next largest character instead (to break the sequence).

  • Continue this process, re-inserting characters into consideration if they still have remaining frequency.

Complexity Analysis:

  • Time Complexity: O(n log n) – Sorting the characters is the most expensive step.

  • Space Complexity: O(n) – For the frequency array and the output string.

Java Code:

Java
Java

. . . .

Approach 2: Greedy with Max-Heap (Priority Queue) in Python

Idea: This approach is similar to Approach 1 but uses a max-heap to manage characters and their frequencies dynamically. We always pick the largest available character that does not violate the repeat limit.

Python Code:

Python3
Python3

. . . .

Step-by-Step Walkthrough

  1. Sorting Approach: Count the frequency of each character and sort characters in descending lexicographical order. Build the result string by repeatedly taking the highest-frequency available character. If a character is about to exceed the repeatLimit in consecutive occurrences, switch to the next largest character for one position, then continue with the first character again.

  2. Priority Queue Approach: Use a max-heap to always fetch the currently largest character. Append it up to repeatLimit times. If it still has remaining occurrences, temporarily use one occurrence of the next largest character from the heap to break the sequence, then push the original character back into the heap to continue later.

Common Mistakes and Edge Cases

  • Single-character string: If s consists of only one unique character, the output will just be that character repeated up to repeatLimit (or the length of s, whichever is smaller). There is no need to insert other characters.

  • repeatLimit larger than any frequency: If repeatLimit is greater than the frequency of every character in s, then no character will ever repeat enough to violate the limit. In this case, a simple sorted (descending) arrangement of the string will already be valid.

  • All characters are the same: When s has one character repeated (e.g., "aaaaa" with repeatLimit = 2), the result will include as many of that character as allowed in a row (two in this case), but then you cannot add another of the same character without breaking the rule. If no other character is available to insert in between, you simply stop (using as many characters as possible up to the limit each time).

Alternative Variations

  1. Strings with Additional Constraints: You might encounter variations where you need to rearrange a string under different constraints, such as ensuring more complex patterns (for example, no two adjacent vowels, etc.). The greedy approach with sorting or heaps can often be adapted to these scenarios.

  2. Maximizing Lexicographical Order: Sometimes the goal is to form the lexicographically largest (or smallest) string under certain constraints. In such cases, a similar greedy strategy is used, but careful consideration is needed to always choose the optimal next character while respecting the rules.

  1. Rearrange String k-Distance Apart: Arrange characters so that identical characters are at least k distance from each other.

  2. Rearrange Characters to Make String k-Distance Apart: A variation of the above problem, ensuring separation of identical characters.

  3. Longest Happy String: Construct the longest possible string by repeatedly adding characters under the condition that no letter appears three times in a row. (This is a similar greedy problem on LeetCode where you must avoid long repeats.)

TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
How many hours do you work at OpenAI?
How to design API structure?
Why do I want a remote job?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;