Given an array arr[], find the lexicographically smallest array that can be obtained after performing at maximum of k consecutive swaps.
Examples :
Input: arr[] = {7, 6, 9, 2, 1}
k = 3
Output: arr[] = {2, 7, 6, 9, 1}
Explanation: Array is: 7, 6, 9, 2, 1
Swap 1: 7, 6, 2, 9, 1
Swap 2: 7, 2, 6, 9, 1
Swap 3: 2, 7, 6, 9, 1
So Our final array after k = 3 swaps :
2, 7, 6, 9, 1
Input: arr[] = {7, 6, 9, 2, 1}
k = 1
Output: arr[] = {6, 7, 9, 2, 1}
We strongly recommend that you click here and practice it, before moving on to the solution.
Naive approach is to generate all the permutation of array and pick the smallest one which satisfy the condition of at-most k swaps. Time complexity of this approach is Ω(n!), which will definitely time out for large value of n.
An Efficient approach is to think greedily. We first pick the smallest element from array a1, a2, a3…(ak or an) [We consider ak when k is smaller, else n]. We place the smallest element to the a0 position after shifting all these elements by 1 position right. We subtract number of swaps (number of swaps is number of shifts minus 1) from k. If still we are left with k > 0 then we apply the same procedure from the very next starting position i.e., a2, a3,…(ak or an) and then place it to the a1 position. So we keep applying the same process until k becomes 0.
C++
#include<bits/stdc++.h>
using namespace std ;
void minimizeWithKSwaps( int arr[], int n, int k)
{
for ( int i = 0; i<n-1 && k>0; ++i)
{
int pos = i;
for ( int j = i+1; j<n ; ++j)
{
if (j-i > k)
break ;
if (arr[j] < arr[pos])
pos = j;
}
for ( int j = pos; j>i; --j)
swap(arr[j], arr[j-1]);
k -= pos-i;
}
}
int main()
{
int arr[] = {7, 6, 9, 2, 1};
int n = sizeof (arr)/ sizeof (arr[0]);
int k = 3;
minimizeWithKSwaps(arr, n, k);
for ( int i=0; i<n; ++i)
cout << arr[i] << " " ;
}
|
Java
import java.io.*;
class GFG {
static void minimizeWithKSwaps( int arr[], int n, int k)
{
for ( int i = 0 ; i < n- 1 && k > 0 ; ++i)
{
int pos = i;
for ( int j = i+ 1 ; j < n ; ++j)
{
if (j - i > k)
break ;
if (arr[j] < arr[pos])
pos = j;
}
int temp;
for ( int j = pos; j>i; --j)
{
temp=arr[j];
arr[j]=arr[j- 1 ];
arr[j- 1 ]=temp;
}
k -= pos-i;
}
}
public static void main(String[] args)
{
int arr[] = { 7 , 6 , 9 , 2 , 1 };
int n = arr.length;
int k = 3 ;
minimizeWithKSwaps(arr, n, k);
for ( int i= 0 ; i<n; ++i)
System.out.print(arr[i] + " " );
}
}
|
Python3
def minimizeWithKSwaps(arr, n, k):
for i in range (n - 1 ):
pos = i
for j in range (i + 1 , n):
if (j - i > k):
break
if (arr[j] < arr[pos]):
pos = j
for j in range (pos, i, - 1 ):
arr[j],arr[j - 1 ] = arr[j - 1 ], arr[j]
k - = pos - i
n, k = 5 , 3
arr = [ 7 , 6 , 9 , 2 , 1 ]
minimizeWithKSwaps(arr, n, k)
for i in range (n):
print (arr[i], end = " " )
|
C#
using System;
class GFG {
static void minimizeWithKSwaps( int []arr, int n,
int k)
{
for ( int i = 0; i < n-1 && k > 0; ++i)
{
int pos = i;
for ( int j = i+1; j < n ; ++j)
{
if (j - i > k)
break ;
if (arr[j] < arr[pos])
pos = j;
}
int temp;
for ( int j = pos; j>i; --j)
{
temp=arr[j];
arr[j]=arr[j-1];
arr[j-1]=temp;
}
k -= pos-i;
}
}
public static void Main()
{
int []arr = {7, 6, 9, 2, 1};
int n = arr.Length;
int k = 3;
minimizeWithKSwaps(arr, n, k);
for ( int i=0; i<n; ++i)
Console.Write(arr[i] + " " );
}
}
|
php
<?php
function minimizeWithKSwaps( $arr , $n , $k )
{
for ( $i = 0; $i < $n -1 && $k > 0; ++ $i )
{
$pos = $i ;
for ( $j = $i +1; $j < $n ; ++ $j )
{
if ( $j - $i > $k )
break ;
if ( $arr [ $j ] < $arr [ $pos ])
$pos = $j ;
}
for ( $j = $pos ; $j > $i ; -- $j )
{
$temp = $arr [ $j ];
$arr [ $j ] = $arr [ $j -1];
$arr [ $j -1] = $temp ;
}
$k -= $pos - $i ;
}
for ( $i = 0; $i < $n ; ++ $i )
echo $arr [ $i ] . " " ;
}
$arr = array (7, 6, 9, 2, 1);
$n = count ( $arr );
$k = 3;
minimizeWithKSwaps( $arr , $n , $k );
?>
|
Javascript
<script>
function minimizeWithKSwaps(arr, n, k)
{
for (let i = 0; i < n - 1 && k > 0; ++i)
{
let pos = i;
for (let j = i+1; j < n ; ++j)
{
if (j - i > k)
break ;
if (arr[j] < arr[pos])
pos = j;
}
let temp;
for (let j = pos; j > i; --j)
{
temp = arr[j];
arr[j] = arr[j - 1];
arr[j - 1] = temp;
}
k -= pos - i;
}
}
let arr = [7, 6, 9, 2, 1];
let n = arr.length;
let k = 3;
minimizeWithKSwaps(arr, n, k);
document.write( "Output: " );
for (let i = 0; i < n; ++i)
document.write(arr[i] + " " );
</script>
|
Time complexity: O(N2)
Auxiliary space: O(1)
Reference:
http://stackoverflow.com/questions/25539423/finding-minimal-lexicographical-array
This article is contributed by Shubham Bansal. If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.