Problem Description
Given two integers n and k, return the k-th lexicographically smallest integer in the range [1, n].
Key Insights
- Lexicographical order is similar to alphabetical order but applied to numbers.
- The k-th number can be found without generating all numbers in the range.
- A Trie-like traversal can be used to navigate through the potential numbers in lexicographical order efficiently.
Space and Time Complexity
Time Complexity: O(log n) - Each step in the traversal reduces the search space significantly. Space Complexity: O(1) - Only a few variables are used to keep track of the current state.
Solution
To solve this problem, we can utilize a depth-first search (DFS) approach to explore the lexicographical order of numbers. Starting from the smallest number, we can count how many numbers can be formed with the current prefix. If the count is less than k, we move to the next prefix. If the count is greater than or equal to k, we dive deeper into the current prefix. This allows us to find the k-th smallest number efficiently without creating a complete list of numbers.