440 K Th Smallest In Lexicographical Order
440 K Th Smallest In Lexicographical Order
K-th Smallest in Lexicographical Order 
Given two integers n and k, return the kth lexicographically smallest integer in the range [1, n].
Example 1:
1
2
3
4
5
**Input:** n = 13, k = 2
**Output:** 10
**Explanation:** The lexicographical order is [1, 10, 11, 12, 13, 2, 3, 4, 5, 6, 7, 8, 9], so the second smallest number is 10.
Example 2:
1
2
3
4
**Input:** n = 1, k = 1
**Output:** 1
Constraints:
1
1 <= k <= n <= 109
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
class Solution:
def findKthNumber(self, n: int, k: int) -> int:
# Function to count the numbers under the prefix `m`
def count_prefix(m, n):
count = 0
current = m
next_ = m + 1 # The next prefix to check
while current <= n:
count += min(n + 1, next_) - current
current *= 10
next_ *= 10
return count
# Start from the smallest prefix `1`
current = 1
k -= 1 # Adjust k for 0-indexing
while k > 0:
count = count_prefix(current, n) # Count the numbers under `current` prefix
if k >= count:
# If k is greater than or equal to the count, we skip this prefix
k -= count
current += 1 # Move to the next prefix
else:
# If k is less than the count, we go deeper into the current prefix
current *= 10 # Go to the next level down
k -= 1 # Account for moving into the next level
return current
This post is licensed under CC BY 4.0 by the author.