CNU10 | Permutare

This was the problem page during the contest. Access the current page here.
Time limit: 1s Memory limit: 64MB Input: Output:

Cerință

Se dau NN si KK, sa se afiseze a KK-a permutare de ordin NN din punct de vedere lexicografic.

Date de intrare

O singura linie cu NN si KK.

Date de ieșire

Un sir de NN numere.

Restricții și precizări

  • 1N181 \leq N \leq 18
  • 1KN!1 \leq K \leq N!
  • Pentru 4040 de pcunte 1N101 \leq N \leq 10

Exemplul 1

stdin

4 6

stdout

1 4 3 2

Explicație

Primele 66 permutari sunt:
(1,2,3,4)(1, 2, 3, 4)
(1,2,4,3)(1, 2, 4, 3)
(1,3,2,4)(1, 3, 2, 4)
(1,3,4,2)(1, 3, 4, 2)
(1,4,2,3)(1, 4, 2, 3)
(1,4,3,2)(1, 4, 3, 2)

Exemplul 2

stdin

9 74812

stdout

2 8 7 9 4 1 5 6 3

Log in or sign up to be able to send submissions!