java.lang.Object
g2201_2300.s2213_longest_substring_of_one_repeating_character.Solution

public class Solution extends Object
2213 - Longest Substring of One Repeating Character.<p>Hard</p> <p>You are given a <strong>0-indexed</strong> string <code>s</code>. You are also given a <strong>0-indexed</strong> string <code>queryCharacters</code> of length <code>k</code> and a <strong>0-indexed</strong> array of integer <strong>indices</strong> <code>queryIndices</code> of length <code>k</code>, both of which are used to describe <code>k</code> queries.</p> <p>The <code>i<sup>th</sup></code> query updates the character in <code>s</code> at index <code>queryIndices[i]</code> to the character <code>queryCharacters[i]</code>.</p> <p>Return <em>an array</em> <code>lengths</code> <em>of length</em> <code>k</code> <em>where</em> <code>lengths[i]</code> <em>is the <strong>length</strong> of the <strong>longest substring</strong> of</em> <code>s</code> <em>consisting of <strong>only one repeating</strong> character <strong>after</strong> the</em> <code>i<sup>th</sup></code> <em>query</em> <em>is performed.</em></p> <p><strong>Example 1:</strong></p> <p><strong>Input:</strong> s = &ldquo;babacc&rdquo;, queryCharacters = &ldquo;bcb&rdquo;, queryIndices = [1,3,3]</p> <p><strong>Output:</strong> [3,3,4]</p> <p><strong>Explanation:</strong> - 1<sup>st</sup> query updates s = &ldquo;b<strong>b</strong>bacc&rdquo;. The longest substring consisting of one repeating character is &ldquo;bbb&rdquo; with length 3.</p> <ul> <li> <p>2<sup>nd</sup> query updates s = &ldquo;bbb<strong>c</strong>cc&rdquo;. The longest substring consisting of one repeating character can be &ldquo;bbb&rdquo; or &ldquo;ccc&rdquo; with length 3.</p> </li> <li> <p>3<sup>rd</sup> query updates s = &ldquo;bbb<strong>b</strong>cc&rdquo;. The longest substring consisting of one repeating character is &ldquo;bbbb&rdquo; with length 4.</p> </li> </ul> <p>Thus, we return [3,3,4].</p> <p><strong>Example 2:</strong></p> <p><strong>Input:</strong> s = &ldquo;abyzz&rdquo;, queryCharacters = &ldquo;aa&rdquo;, queryIndices = [2,1]</p> <p><strong>Output:</strong> [2,3]</p> <p><strong>Explanation:</strong> - 1<sup>st</sup> query updates s = &ldquo;ab<strong>a</strong>zz&rdquo;. The longest substring consisting of one repeating character is &ldquo;zz&rdquo; with length 2.</p> <ul> <li>2<sup>nd</sup> query updates s = &ldquo;a<strong>a</strong>azz&rdquo;. The longest substring consisting of one repeating character is &ldquo;aaa&rdquo; with length 3.</li> </ul> <p>Thus, we return [2,3].</p> <p><strong>Constraints:</strong></p> <ul> <li><code>1 <= s.length <= 10<sup>5</sup></code></li> <li><code>s</code> consists of lowercase English letters.</li> <li><code>k == queryCharacters.length == queryIndices.length</code></li> <li><code>1 <= k <= 10<sup>5</sup></code></li> <li><code>queryCharacters</code> consists of lowercase English letters.</li> <li><code>0 <= queryIndices[i] < s.length</code></li> </ul>
  • Constructor Details

    • Solution

      public Solution()
  • Method Details

    • longestRepeating

      public int[] longestRepeating(String s, String queryCharacters, int[] queryIndices)