问题3084--Permutation

3084: Permutation

[命题人 : ]
时间限制 : 3.000 sec  内存限制 : 64 MB

题目描述

A permutation is an ordered arrangement of objects. For example, 3124 is one possible permutation of the digits 1, 2, 3 and 4. If all of the permutations are listed numerically or alphabetically, we call it lexicographic order. The lexicographic permutations of 0, 1 and 2 are:
                                  012   021   102   120   201   210
Now give you an positive integer n, What is the n-th lexicographic permutation of the digits 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9?

输入

An integer n,where n<=10! i.e n<= 3628800

输出

The n-th lexicographic permutation of the digits 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9.

样例输入 Copy

1
2
3
3628800

样例输出 Copy

0123456789
0123456798
0123456879
9876543210

来源/分类