Given 2 integers and , find the lexicographically largest permutation of such that it takes exactly swaps (between any two elements) to most efficiently sort it.
We define the most efficient sorting of an array of integers as one where the number of swaps is minimized.
The answer is guaranteed to exist.
Input Specification
The first and only line will contain integers, , .
Output Specification
On one line, output the lexicographically greatest array that satisfies the conditions outlined in the problem statement.
Sample Input
4 3
Sample Output
4 3 1 2
Comments
Is it possible to not MLE in py3
If you need a hint, try to use memory.
P.S. damn it c beat me to it.
Yes