forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_60.java
48 lines (42 loc) · 1.27 KB
/
_60.java
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
package com.fishercoder.solutions;
/**
* 60. Permutation Sequence
*
* 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.
*/
public class _60 {
public static class Solution1 {
public String getPermutation(int n, int k) {
int[] nums = new int[n + 1];
int permcount = 1;
for (int i = 0; i < n; i++) {
nums[i] = i + 1; // put 1, 2, 3 ... n into nums[]
permcount *= (i + 1);
}
k--;
StringBuilder sb = new StringBuilder();
for (int i = 0; i < n; i++) {
permcount = permcount / (n - i);
int idx = k / permcount;// the index that this position should
// choose
sb.append(nums[idx]);
// left shift nums[] by one bit
for (int j = idx; j < n - i; j++) {
nums[j] = nums[j + 1];
}
k %= permcount;
}
return sb.toString();
}
}
}