-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path1053.java
More file actions
58 lines (58 loc) · 1.5 KB
/
Copy path1053.java
File metadata and controls
58 lines (58 loc) · 1.5 KB
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
// 1053. Previous Permutation With One Swap
//
// Given an array of positive integers arr (not necessarily distinct), return the
// lexicographically
// largest permutation that is smaller than arr, that can be made with exactly one swap. If it cannot be done, then return the same array.
//
// Note that a swap exchanges the positions of two numbers arr[i] and arr[j]
//
//
//
// Example 1:
//
// Input: arr = [3,2,1]
// Output: [3,1,2]
// Explanation: Swapping 2 and 1.
// Example 2:
//
// Input: arr = [1,1,5]
// Output: [1,1,5]
// Explanation: This is already the smallest permutation.
// Example 3:
//
// Input: arr = [1,9,4,6,7]
// Output: [1,7,4,6,9]
// Explanation: Swapping 9 and 7.
//
//
// Constraints:
//
// 1 <= arr.length <= 104
// 1 <= arr[i] <= 104
//
// Runtime 0 ms Beats 100%
// Memory 44.9 MB Beats 65.17%
class Solution {
public int[] prevPermOpt1(int[] arr) {
int index = arr.length - 1;
while (index > 0) {
if (arr[index] < arr[index - 1]) {
int last = index;
for (int i = last + 1; i < arr.length; i++) {
if (arr[i] >= arr[index - 1]) {
break;
}
if (arr[last] < arr[i]) {
last = i;
}
}
int temp = arr[index - 1];
arr[index - 1] = arr[last];
arr[last] = temp;
break;
}
index--;
}
return arr;
}
}