HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Sections > Arithmetic > problem:


50377 - kth Permutation

Guest
• Review clarifications (1)

Section problems

• 50240 - The numbers that are divisi...
• 50242 - Numbers whose sum of the...
• 50248 - Power of two
• 50641 - Strong Prime Power
• 50249 - Ladders
• 50247 - Missing numbers
• 50267 - Interesting permutations
• 50640 - Cubes
• 50377 - kth Permutation
• 50341 - Separate Into Digits
• 50424 - Area
• 50335 - Five Math Operators
• 50299 - Median
• 50301 - Fractions to Decimals
• 50304 - Number Pattern
• 50305 - John's Tasks
• 50649 - Puzzle

Feedback

If you notice incorrect translations in Contester, please let author know.

Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb.
Adapted from from Mongolian National Informatics Olympiads.

kth Permutation

In mathematics, the permutation is the rearranging or repositioning of objects or values.

Question: Write a program that gets the length of a the permuted elements (numbers) and a number k. Then, your program will show kth positioning of the numbers.
The positioning starts with ascending order of all numbers and goes always in ascending order. For example, if n is 5, the first 9 permutations can be listed as follows:
 1. 1 2 3 4 5
 2. 1 2 3 5 4
 3. 1 2 4 3 5
 4. 1 2 4 5 3
 5. 1 2 5 3 4
 6. 1 2 5 4 3
 7. 1 3 2 4 5
 8. 1 3 2 5 4
 9. 1 3 4 2 5

Input specification
You will be given only two integer numbers (n and k) where 1 ≤ n ≤ 30 and 1 ≤ k ≤ 1016 and k is less than or equal to n!.

Output specification
Show kth positioning of n numbers.

 Sample Input I  
  5 2
 Sample Input II  
  6 23
 Sample Output I  
  1 2 3 5 4
 Sample Output II  
  1 2 6 5 3 4


Для отправки решений необходимо выполнить вход.

www.contester.ru