Lexicographically Smallest String After Applying Operations โ€” Algorithm Visualization & Coding Challenge

Choose Your Learning Path

How would you like to learn today?
Visualize algorithms in real time, explore them step by step, or challenge yourself with a test.Choose a path to focusโ€”or scroll down to preview all options.

๐Ÿง  Active Learning

Visualize the algorithm step-by-step with interactive animations in real time.

๐Ÿ“– Passive Learning

Read the full explanation, examples, and starter code at your own pace.

๐ŸŽฏ Challenge Mode

Drag and arrange the algorithm steps in the correct execution order.

๐Ÿง  Select Active to activate

JUMP INTO VISUALIZATION
Watch algorithms run step by step.

Follow every state change, comparison, and transformation as the execution unfolds in real time.

๐Ÿ“– Select Passive to activate

Understanding Lexicographically Smallest String After Applying Operations
Detailed explanation and reference materials
Problem Overview

๐Ÿงฉ Lexicographically Smallest String After Applying Operations

Difficulty: Medium
Topics: String Manipulation, BFS, Math, Simulation


๐Ÿ“ Problem Statement

You are given a string s of even length consisting of digits from 0 to 9, and two integers a and b.

You can apply either of the following two operations any number of times and in any order on s:

  1. โž• Add Operation:
    Add a to all odd indices of s (0-indexed).
    Digits post 9 are cycled back to 0.

    Example:
    If s = "3456" and a = 5,
    then s becomes "3951".

  2. ๐Ÿ”„ Rotate Operation:
    Rotate s to the right by b positions.

    Example:
    If s = "3456" and b = 1,
    then s becomes "6345".

Your task is to return the lexicographically smallest string you can obtain by applying the above operations any number of times on s.


๐Ÿ“˜ Lexicographical Order Definition

A string a is lexicographically smaller than a string b (of the same length) if in the first position where they differ,
the character in a is smaller than the character in b.

Example:
"0158" is lexicographically smaller than "0190"
because they differ at the third character ('5' < '9').


๐Ÿ’ก Examples

Example 1:

Input:  s = "5525", a = 9, b = 2
Output: "2050"

Explanation: We can apply the following operations:

StepOperationResult
1Start5525
2Rotate2555
3Add2454
4Add2353
5Rotate5323
6Add5222
7Add5121
8Rotate2151
9Add2050 โœ…

There is no way to obtain a string smaller than "2050".


Example 2:

Input:  s = "74", a = 5, b = 1
Output: "24"

Explanation:

Start  โ†’ "74"
Rotate โ†’ "47"
Add    โ†’ "42"
Rotate โ†’ "24"

There is no smaller string than "24".


Example 3:

Input:  s = "0011", a = 4, b = 2
Output: "0011"

Explanation:
No sequence of operations can give a smaller string than "0011".


โš™๏ธ Constraints

  • 2 <= s.length <= 100
  • s.length is even
  • s consists of digits from 0 to 9 only
  • 1 <= a <= 9
  • 1 <= b <= s.length - 1

โ€” Written by Saurabh Patil โ€ข B.Tech CSE โ€ข Software Developer

Categories
strings
maths
leetcode-problem-of-the-day
java
Reference Link
https://leetcode.com/problems/lexicographically-smallest-string-after-applying-operations/description/

Loading component...

Starter Code
Test, modify, or copy the starter code. Click "Visualize" to import into the canvas.
Java
Output:
Understood Algorithm, Test Me now ๐ŸŽฎ

๐ŸŽฏ Select Challenge to activate

๐Ÿง  Logic Puzzle
Think & Arrange, Don't Just Copy-Paste

Drag and arrange the algorithm steps in the correct execution order instead of spending time typing code letter by letter.

Arrange the Algorithm Correctly ๐Ÿงฉ

The algorithm is divided into three logical parts. Carefully rearrange each section in the correct order to form a complete and valid solution.

Understand Below Algorithm

Don't Know Current Algorithm ? ย 

Green text means the instruction is placed in the correct position.

Red text means the instruction is in the wrong position.

Block Colors

Instructions with the same background color indicate particular blocks start and end.

A tick mark means the instruction is correct and locked.

๐Ÿ”’ Locked steps cannot be moved. Only unlocked steps are draggable.

๐Ÿ”Š Enable sound for swap feedback and completion effects.

DrawToCode โ€” Visualize, Practice & Master Algorithms

Learn data structures and algorithms through interactive visualizations. Practice coding problems, track your progress, and understand concepts deeply.

Visualization Boardย |ย Problemsย |ย Aboutย |ย Privacy Policy
EmailLinkedInTwitterInstagramGitHub
ยฉ 2026 DrawToCode. All rights reserved.