Permutation Order
Let p(n,k) denote the kth permutation (in lexicographical order) of 1 \dots n. For example, p(4,1)=[1,2,3,4] and p(4,2)=[1,2,4,3]. Your task is to process two types of tests: - Given n and k, find p(n,k) - Given n and p(n,k), find k Input The first line has an integer t: the number of tests. Each test is either "1 n k" or "2 n p(n,k)". Output For each test, print the answer according to th
HINT LADDERno hints yet
L1 Observation
L2 Technique
L3 Approach
L4 Pseudo-code
🔒
L5 Full solution
L5 unlocks only if you insist twice
solution.cppC++17
CodeSearch Tutor
Hints, not spoilers — it won’t hand over the full solution unless you insist.
Sign in to chat with the tutor and save your progress.
Sign in to start