forked from aylei/leetcode-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths0060_permutation_sequence.rs
76 lines (70 loc) · 1.51 KB
/
s0060_permutation_sequence.rs
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
72
73
74
75
76
/**
* [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 for n = 3:
*
* <ol>
* "123"
* "132"
* "213"
* "231"
* "312"
* "321"
* </ol>
*
* Given n and k, return the k^th permutation sequence.
*
* Note:
*
*
* Given n will be between 1 and 9 inclusive.
* Given k will be between 1 and n! inclusive.
*
*
* Example 1:
*
*
* Input: n = 3, k = 3
* Output: "213"
*
*
* Example 2:
*
*
* Input: n = 4, k = 9
* Output: "2314"
*
*
*/
pub struct Solution {}
// problem: https://leetcode.com/problems/permutation-sequence/
// discuss: https://leetcode.com/problems/permutation-sequence/discuss/?currentPage=1&orderBy=most_votes&query=
// submission codes start here
// target: split k = i! + j! + ...
use std::char::from_digit;
impl Solution {
pub fn get_permutation(n: i32, k: i32) -> String {
let factorials = [0, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880];
let mut k = k;
let mut i = n;
let mut res = String::new();
while i > 0 {
if k > factorials[i as usize] {
let round = k / factorials[i as usize];
if round >= n {}
} else {
i -= 1;
}
}
res
}
}
// submission codes end
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_60() {}
}