We have an integer array that is sorted in ascending order. We also have 3 integers A, B and C. We need to apply A*x*x + B*x + C for each element x in the array and sort the modified array.
Example:
Input : arr[] = {-1, 0, 1, 2, 3, 4}
A = -1, B = 2, C = -1
Output : {-9, -4, -4, -1, -1, 0}
Expalnation:
Input array is {-1, 0, 1, 2, 3, 4}. After
applying the equation A*x*x + B*x + C on
every element x we get, {-4,-1, 0, -1, -4, -9}
After sorting, we get {-9, -4, -4, -1, -1, 0}
Method 1 (Simple) :
- Apply the given equation to all the elements. O(n)
- Sort the modified array. O(n log n)
The time complexity of O(n log n)
Algorithm:
- Initialize an array arr of size n with given elements.
- Initialize three integers A, B, and C.
- For each element x in arr, apply the given equation Axx + B*x + C and store the result in arr.
- Sort the array arr using a sorting algorithm.
- Print the sorted array arr.
Below is the implementation of the approach:
C++
#include<bits/stdc++.h>
using namespace std;
void applyEquation( int arr[], int n, int a, int b, int c) {
for ( int i=0; i<n; i++) {
arr[i] = a*arr[i]*arr[i] + b*arr[i] + c;
}
}
int main() {
int arr[] = { -21 ,-15, 12, 13, 14 };
int n = sizeof (arr)/ sizeof (arr[0]);
int a = -6, b = -7, c = 2;
applyEquation(arr, n, a, b, c);
sort(arr, arr+n);
cout << "Array after sorting is : " ;
for ( int i=0; i<n; i++) {
cout << arr[i] << " " ;
}
return 0;
}
|
Java
import java.util.Arrays;
public class ArrayEquation {
public static void applyEquation( int [] arr, int n, int a, int b, int c) {
for ( int i = 0 ; i < n; i++) {
arr[i] = a * arr[i] * arr[i] + b * arr[i] + c;
}
}
public static void main(String[] args) {
int [] arr = { - 21 , - 15 , 12 , 13 , 14 };
int n = arr.length;
int a = - 6 , b = - 7 , c = 2 ;
applyEquation(arr, n, a, b, c);
Arrays.sort(arr);
System.out.print( "Array after sorting is: " );
for ( int i = 0 ; i < n; i++) {
System.out.print(arr[i] + " " );
}
}
}
|
Python3
def applyEquation(arr, n, a, b, c):
for i in range (n):
arr[i] = a * arr[i] * arr[i] + b * arr[i] + c
if __name__ = = '__main__' :
arr = [ - 21 , - 15 , 12 , 13 , 14 ]
n = len (arr)
a = - 6
b = - 7
c = 2
applyEquation(arr, n, a, b, c)
arr.sort()
print ( "Array after sorting is:" , arr)
|
C#
using System;
public class ArrayEquation
{
public static void ApplyEquation( int [] arr, int n, int a, int b, int c)
{
for ( int i = 0; i < n; i++)
{
arr[i] = a * arr[i] * arr[i] + b * arr[i] + c;
}
}
public static void Main( string [] args)
{
int [] arr = { -21, -15, 12, 13, 14 };
int n = arr.Length;
int a = -6, b = -7, c = 2;
ApplyEquation(arr, n, a, b, c);
Array.Sort(arr);
Console.Write( "Array after sorting is: " );
foreach ( int num in arr)
{
Console.Write(num + " " );
}
}
}
|
Javascript
function applyEquation(arr, a, b, c) {
for (let i = 0; i < arr.length; i++) {
arr[i] = a * arr[i] * arr[i] + b * arr[i] + c;
}
}
function main() {
const arr = [-21, -15, 12, 13, 14];
const a = -6, b = -7, c = 2;
applyEquation(arr, a, b, c);
arr.sort((x, y) => x - y);
console.log( "Array after sorting is: " + arr.join( " " ));
}
main();
|
Output
Array after sorting is : -2497 -1272 -1243 -1103 -946
Time Complexity: O(n * log2n) as sort function has been called. Here, n is the size of the input array.
Auxiliary Space: O(1) as no extra space has been used.
Method 2(Efficient): Parabolic Property:
The equation given is parabolic. So the result of applying it to a sorted array will result in an array that will have a maximum/minimum with the sub-arrays to its left and right sorted.
In the above example, maximum is 0 and the subarray to its left {-4, -1} is sorted in ascending order and the sub-array to its right {-1, -4, -9} is sorted in descending order.
All we need to do is merge these sorted arrays which are linear in time.
So the algorithm is:
- Apply equation on each element.
- Find maximum/minimum.
- Merge sub-arrays.
Note: The below code assumes that the modified array is first increasing then decreasing.
Implementation:
C++
#include<bits/stdc++.h>
using namespace std;
void sortArray( int arr[], int n, int A, int B, int C)
{
for ( int i = 0; i < n; i++)
arr[i] = A*arr[i]*arr[i] + B*arr[i] + C;
int index, maximum = INT_MIN;
for ( int i = 0; i< n; i++)
{
if (maximum < arr[i])
{
index = i;
maximum = arr[i];
}
}
int i = 0, j = n-1;
int new_arr[n], k = 0;
while (i < index && j > index)
{
if (arr[i] < arr[j])
new_arr[k++] = arr[i++];
else
new_arr[k++] = arr[j--];
}
while (i < index)
new_arr[k++] = arr[i++];
while (j > index)
new_arr[k++] = arr[j--];
new_arr[n-1] = maximum;
for ( int i = 0; i < n ; i++)
arr[i] = new_arr[i];
}
int main()
{
int arr[] = {-21 ,-15, 12, 13, 14 };
int n = sizeof (arr) / sizeof (arr[0]);
int A = -6, B =-7, C = 2;
sortArray(arr, n, A, B, C);
cout << "Array after sorting is : " ;
for ( int i=0; i<n; i++)
cout << arr[i] << " " ;
return 0;
}
|
Java
class Main
{
static void sortArray( int arr[], int n, int A, int B, int C)
{
for ( int i = 0 ; i < n; i++)
arr[i] = A*arr[i]*arr[i] + B*arr[i] + C;
int index=- 1 ;
int maximum = - 999999 ;
for ( int i = 0 ; i< n; i++)
{
if (maximum < arr[i])
{
index = i;
maximum = arr[i];
}
}
int i = 0 , j = n- 1 ;
int [] new_arr = new int [n];
int k = 0 ;
while (i < index && j > index)
{
if (arr[i] < arr[j])
new_arr[k++] = arr[i++];
else
new_arr[k++] = arr[j--];
}
while (i < index)
new_arr[k++] = arr[i++];
while (j > index)
new_arr[k++] = arr[j--];
new_arr[n- 1 ] = maximum;
for ( int p = 0 ; p < n ; p++)
arr[p] = new_arr[p];
}
public static void main (String[] args)
{
int arr[] = {- 21 ,- 15 , 12 , 13 , 14 };
int n = arr.length;
int A = - 6 , B =- 7 , C = 2 ;
sortArray(arr, n, A, B, C);
System.out.println( "Array after sorting is : " );
for ( int i= 0 ; i<n; i++)
System.out.print(arr[i]+ " " );
}
}
|
Python3
import sys
def sortArray(arr, n, A, B, C):
for i in range (n):
arr[i] = (A * arr[i] * arr[i] +
B * arr[i] + C)
index = - (sys.maxsize - 1 )
maximum = - (sys.maxsize - 1 )
for i in range (n):
if maximum < arr[i]:
index = i
maximum = arr[i]
i = 0 ; j = n - 1 ;
new_arr = [ 0 ] * n
k = 0
while i < index and j > index:
if arr[i] < arr[j]:
new_arr[k] = arr[i]
k + = 1
i + = 1
else :
new_arr[k] = arr[j]
k + = 1
j - = 1
while i < index:
new_arr[k] = arr[i]
k + = 1
i + = 1
while j > index:
new_arr[k] = arr[j]
k + = 1
j - = 1
new_arr[n - 1 ] = maximum
for i in range (n):
arr[i] = new_arr[i]
arr = [ - 21 , - 15 , 12 , 13 , 14 ]
n = len (arr)
A = - 6
B = - 7
C = 2
sortArray(arr, n, A, B, C)
print ( "Array after sorting is:" )
for i in range (n):
print (arr[i], end = " " )
|
C#
using System;
class MAIN
{
static void sortArray( int [] arr, int n, int A, int B, int C)
{
for ( int i = 0; i < n; i++)
arr[i] = A*arr[i]*arr[i] + B*arr[i] + C;
int index=-1;
int maximum = -999999;
for ( int i = 0; i< n; i++)
{
if (maximum < arr[i])
{
index = i;
maximum = arr[i];
}
}
int l = 0, j = n-1;
int [] new_arr = new int [n];
int k = 0;
while (l < index && j > index)
{
if (arr[l] < arr[j])
new_arr[k++] = arr[l++];
else
new_arr[k++] = arr[j--];
}
while (l < index)
new_arr[k++] = arr[l++];
while (j > index)
new_arr[k++] = arr[j--];
new_arr[n-1] = maximum;
for ( int p = 0; p < n ; p++)
arr[p] = new_arr[p];
}
public static void Main ()
{
int [] arr = {-21 ,-15, 12, 13, 14 };
int n = arr.Length;
int A = -6, B =-7, C = 2;
sortArray(arr, n, A, B, C);
Console.Write( "Array after sorting is : " + "\n" );
for ( int i=0; i<n; i++)
Console.Write(arr[i]+ " " );
}
}
|
Javascript
<script>
function sortArray(arr,n,A,B,C)
{
for (let i = 0; i < n; i++)
arr[i] = A*arr[i]*arr[i] + B*arr[i] + C;
let index=-1;
let maximum = -999999;
for (let i = 0; i< n; i++)
{
if (maximum < arr[i])
{
index = i;
maximum = arr[i];
}
}
let i = 0, j = n-1;
let new_arr = new Array(n);
for (let i=0;i<n;i++)
{
new_arr[i]=0;
}
let k = 0;
while (i < index && j > index)
{
if (arr[i] < arr[j])
new_arr[k++] = arr[i++];
else
new_arr[k++] = arr[j--];
}
while (i < index)
new_arr[k++] = arr[i++];
while (j > index)
new_arr[k++] = arr[j--];
new_arr[n-1] = maximum;
for (let p = 0; p < n ; p++)
arr[p] = new_arr[p];
}
let arr=[-21 ,-15, 12, 13, 14];
let n = arr.length;
let A = -6, B =-7, C = 2;
sortArray(arr, n, A, B, C);
document.write( "Array after sorting is : <br>" );
for (let i=0; i<n; i++)
document.write(arr[i]+ " " );
</script>
|
PHP
<?php
function sortArray(& $arr , $n , $A , $B , $C )
{
for ( $i = 0; $i < $n ; $i ++)
$arr [ $i ] = $A * $arr [ $i ] * $arr [ $i ] +
$B * $arr [ $i ] + $C ;
$index = 0;
$maximum = PHP_INT_MIN;
for ( $i = 0; $i < $n ; $i ++)
{
if ( $maximum < $arr [ $i ])
{
$index = $i ;
$maximum = $arr [ $i ];
}
}
$i = 0;
$j = $n - 1;
$new_arr = array ();
while ( $i < $index && $j > $index )
{
if ( $arr [ $i ] < $arr [ $j ])
array_push ( $new_arr , $arr [ $i ++]);
else
array_push ( $new_arr , $arr [ $j --]);
}
while ( $i < $index )
array_push ( $new_arr , $arr [ $i ++]);
while ( $j > $index )
array_push ( $new_arr , $arr [ $j --]);
array_push ( $new_arr , $maximum );
for ( $i = 0; $i < count ( $new_arr ) ; $i ++)
$arr [ $i ] = $new_arr [ $i ];
}
$arr = array (-21 ,-15, 12, 13, 14 );
$n = count ( $arr );
$A = -6;
$B = -7;
$C = 2;
sortArray( $arr , $n , $A , $B , $C );
echo "Array after sorting is : \n" ;
for ( $i = 0; $i < $n ; $i ++)
echo $arr [ $i ] . " " ;
?>
|
Output
Array after sorting is : n-2497 -1272 -1243 -1103 -946
Time Complexity: O(n)
Auxiliary Space: O(n)
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!
Last Updated :
31 Aug, 2023
Like Article
Save Article