-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPermutationSequence.java
More file actions
71 lines (57 loc) · 1.49 KB
/
PermutationSequence.java
File metadata and controls
71 lines (57 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package leetcode;
import java.util.ArrayList;
import java.util.List;
public class PermutationSequence {
/**
* The set [1,2,3,鈥�,n] contains a total of n! unique permutations.
By listing and labeling all of the permutations in order,
We get the following sequence (ie, for n = 3):
"123"
"132"
"213"
"231"
"312"
"321"
Given n and k, return the kth permutation sequence.
Note: Given n will be between 1 and 9 inclusive.
1锛� 2锛� 3锛� 4:
1 + {2, 3, 4}
2 + {1, 3, 4}
3 + {1, 2, 4}
4 + {1, 2, 3}
18 : 3421
res :
fact : 1 1 2 6
k = 17
i = 4 index = 17 / 6 = 2 k = 17 % 6 = 5
i = 3 index = 5 / 2 = 2 k = 5 % 2 = 1
i = 2 index = 1 / 1 = 1 k = 1 % 1 = 0
4 3 2 1
3 4 2 1
time : O(n)
space : O(n)
* @param n
* @param k
* @return
*/
public static String getPermutation(int n, int k) {
List<Integer> res = new ArrayList<>();
for (int i = 1; i <= n; i++) {
res.add(i);
}
int[] fact = new int[n];
fact[0] = 1;
for (int i = 1; i < n; i++) {
fact[i] = i * fact[i - 1];
}
k = k - 1;
StringBuilder sb = new StringBuilder();
for (int i = n; i > 0; i--) {
int index = k / fact[i - 1];
k = k % fact[i - 1];
sb.append(res.get(index));
res.remove(index);
}
return sb.toString();
}
}