Skip to content

Commit 2b87fa1

Browse files
add 440
1 parent 1168932 commit 2b87fa1

File tree

2 files changed

+52
-0
lines changed

2 files changed

+52
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ Your ideas/fixes/algorithms are more than welcome!
135135
|444|[Sequence Reconstruction](https://leetcode.com/problems/sequence-reconstruction/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_444.java)| O(n)|O(n) | Medium| Topological Sort, Graph
136136
|442|[Find All Duplicates in an Array](https://leetcode.com/problems/find-all-duplicates-in-an-array/)|[Solution](../master/src/main/java/com/fishercoder/solutions/FindAllDuplicatesinanArray.java)| O(n)|O(1) | Medium| Array
137137
|441|[Arranging Coins](https://leetcode.com/problems/arrange-coins/)|[Solution](../master/src/main/java/com/fishercoder/solutions/ArrangingCoins.java)| O(n)|O(1) | Easy|
138+
|440|[K-th Smallest in Lexicographical Order](https://leetcode.com/problems/k-th-smallest-in-lexicographical-order/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_440.java)| O(n^2)|O(1) | Hard|
138139
|439|[Ternary Expression Parser](https://leetcode.com/problems/ternary-expression-parser/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_439.java)| O(n)|O(n) | Medium| Stack
139140
|438|[Find All Anagrams in a String](https://leetcode.com/problems/find-all-anagrams-in-a-string/)|[Solution](../master/src/main/java/com/fishercoder/solutions/FindAllAnagramsinaString.java)| O(n)|O(1) | Easy|
140141
|437|[Path Sum III](https://leetcode.com/problems/path-sum-iii/)|[Solution](../master/src/main/java/com/fishercoder/solutions/PathSumIII.java) | O(n^2) |O(n) | Easy| DFS, recursion
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
package com.fishercoder.solutions;
2+
3+
/**
4+
* 440. K-th Smallest in Lexicographical Order
5+
*
6+
* Given integers n and k, find the lexicographically k-th smallest integer in the range from 1 to n.
7+
8+
Note: 1 ≤ k ≤ n ≤ 109.
9+
10+
Example:
11+
12+
Input:
13+
n: 13 k: 2
14+
15+
Output:
16+
10
17+
18+
Explanation:
19+
The lexicographical order is [1, 10, 11, 12, 13, 2, 3, 4, 5, 6, 7, 8, 9], so the second smallest number is 10.
20+
*/
21+
public class _440 {
22+
23+
/**credit: https://discuss.leetcode.com/topic/64624/concise-easy-to-understand-java-5ms-solution-with-explaination/2*/
24+
public int findKthNumber(int n, int k) {
25+
int curr = 1;
26+
k = k - 1;
27+
while (k > 0) {
28+
int steps = calSteps(n, curr, curr + 1);
29+
if (steps <= k) {
30+
curr += 1;
31+
k -= steps;
32+
} else {
33+
curr *= 10;
34+
k -= 1;
35+
}
36+
}
37+
return curr;
38+
}
39+
40+
//use long in case of overflow
41+
public int calSteps(int n, long n1, long n2) {
42+
int steps = 0;
43+
while (n1 <= n) {
44+
steps += Math.min(n + 1, n2) - n1;
45+
n1 *= 10;
46+
n2 *= 10;
47+
}
48+
return steps;
49+
}
50+
51+
}

0 commit comments

Comments
 (0)