Problem Description
Given a positive integer n, find the smallest integer which has exactly the same digits existing in the integer n and is greater in value than n. If no such positive integer exists, return -1. Note that the returned integer should fit in 32-bit integer, if there is a valid answer but it does not fit in 32-bit integer, return -1.
Key Insights
- The problem requires finding the next permutation of the digits of n that is greater than n.
- The solution can be approached using the "next permutation" algorithm, which involves rearranging the digits.
- The constraints of the problem ensure that we only work with positive integers less than 2^31.
Space and Time Complexity
Time Complexity: O(k), where k is the number of digits in the integer n.
Space Complexity: O(1), since we are modifying the digits in place without using additional data structures.
Solution
To solve this problem, we can utilize the next permutation algorithm. The steps involved are as follows:
- Convert the integer to a list of its digits.
- Identify the first pair of adjacent digits (from right to left) where the left digit is smaller than the right digit. This identifies the point where we need to make a swap to create a larger number.
- If no such pair exists, return -1 as it means we are at the highest permutation.
- Find the smallest digit to the right of this identified position that is larger than the identified left digit and swap them.
- Reverse the digits to the right of the original position to get the smallest possible number.
- Convert the list of digits back to an integer and check if it is within the 32-bit integer range.