Programação CompetitivaMédio

Matriz lexicograficamente menor

Guia detalhado e implementação de Python para o problema da 'matriz lexicograficamente menor'.

Declaração do problema

Médio

Escreva uma função lexicographically_smallest(arr, k) que retorne o menor array lexicograficamente que pode ser obtido trocando elementos adjacentes no máximo k vezes. Os elementos em arr são únicos.

Restrições
  • 1 <= len(arr) <= 1000
  • 0 <= k <= 10^5
  • -10^9 <= arr[i] <= 10^9

Exemplos

Example 1
Input
lexicographically_smallest([7, 6, 9, 2, 1], 3)
Output
[2, 7, 6, 9, 1]
Explanation

To get the smallest possible element 2 to the front, we swap 9 and 2, then 6 and 2, then 7 and 2. This takes exactly 3 swaps, resulting in [2, 7, 6, 9, 1].

Example 2
Input
lexicographically_smallest([2, 1, 3], 1)
Output
[1, 2, 3]
Explanation

Swap 2 and 1 (1 swap) to get [1, 2, 3].

Need a Hint?
Considere o uso de estruturas de dados específicas do Greedy, como conjuntos ou heaps.
Edge Cases to Watch
  • Estruturas de entrada vazias
  • Entradas de elemento único
  • Grandes limites numéricos

Pronto para resolver?

Open the problem in PyRun's browser-based Python editor. Your code runs fully offline — no server required.

Abrir no Editor
Found this breakdown helpful?

PyRun is built and maintained by an independent solo developer. If this helped your interview prep, consider buying a coffee!

Buy me a coffee

Recursos Python recomendados

Expanda seu conhecimento com tutoriais interativos relacionados, folhas de dicas e comparações de código.