Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    3722 - Lexicographically Smallest String After Reverse.

    Medium

    You are given a string s of length n consisting of lowercase English letters.

    You must perform exactly one operation by choosing any integer k such that 1 <= k <= n and either:

    • reverse the first k characters of s, or

    • reverse the last k characters of s.

    Return the lexicographically smallest string that can be obtained after exactly one such operation.

    A string a is lexicographically smaller than a string b if, at the first position where they differ, a has a letter that appears earlier in the alphabet than the corresponding letter in b. If the first min(a.length, b.length) characters are the same, then the shorter string is considered lexicographically smaller.

    Example 1:

    Input: s = "dcab"

    Output: "acdb"

    Explanation:

    • Choose k = 3, reverse the first 3 characters.

    • Reverse "dca" to "acd", resulting string s = "acdb", which is the lexicographically smallest string achievable.

    Example 2:

    Input: s = "abba"

    Output: "aabb"

    Explanation:

    • Choose k = 3, reverse the last 3 characters.

    • Reverse "bba" to "abb", so the resulting string is "aabb", which is the lexicographically smallest string achievable.

    Example 3:

    Input: s = "zxy"

    Output: "xzy"

    Explanation:

    • Choose k = 2, reverse the first 2 characters.

    • Reverse "zx" to "xz", so the resulting string is "xzy", which is the lexicographically smallest string achievable.

    Constraints:

    • 1 <= n == s.length <= 1000

    • s consists of lowercase English letters.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      Solution()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final String lexSmallest(String s)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait