Preparando MOJI

Minimal string

1000ms 262144K

Description:

Petya recieved a gift of a string s with length up to 105 characters for his birthday. He took two more empty strings t and u and decided to play a game. This game has two possible moves:

  • Extract the first character of s and append t with this character.
  • Extract the last character of t and append u with this character.

Petya wants to get strings s and t empty and string u lexicographically minimal.

You should write a program that will help Petya win the game.

Input:

First line contains non-empty string s (1 ≤ |s| ≤ 105), consisting of lowercase English letters.

Output:

Print resulting string u.

Sample Input:

cab

Sample Output:

abc

Sample Input:

acdb

Sample Output:

abdc

Informação

Codeforces

Provedor Codeforces

Código CF797C

Tags

data structuresgreedystrings

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:14:37

Relacionados

Nada ainda