C++ Program to Maximize elements using another array Last Updated : 24 Mar, 2023 Comments Improve Suggest changes Like Article Like Report Given two arrays with size n, maximize the first array by using the elements from the second array such that the new array formed contains n greatest but unique elements of both the arrays giving the second array priority (All elements of second array appear before first array). The order of appearance of elements is kept same in output as in input.Examples: Input : arr1[] = {2, 4, 3} arr2[] = {5, 6, 1} Output : 5 6 4 As 5, 6 and 4 are maximum elements from two arrays giving second array higher priority. Order of elements is same in output as in input.Input : arr1[] = {7, 4, 8, 0, 1} arr2[] = {9, 7, 2, 3, 6} Output : 9 7 6 4 8 Approach : We create an auxiliary array of size 2*n and store the elements of 2nd array in auxiliary array, and then we will store elements of 1st array in it. After that we will sort auxiliary array in decreasing order. To keep the order of elements according to input arrays we will use hash table. We will store 1st n largest unique elements of auxiliary array in hash table. Now we traverse the second array and store that elements of second array in auxiliary array that are present in hash table. Similarly we will traverse first array and store the elements that are present in hash table. In this way we get n unique and largest elements from both the arrays in auxiliary array while keeping the order of appearance of elements same. Below is the implementation of above approach : C++ // C++ program to print the maximum elements // giving second array higher priority #include <bits/stdc++.h> using namespace std; // Compare function used to sort array // in decreasing order bool compare(int a, int b) { return a > b; } // Function to maximize array elements void maximizeArray(int arr1[], int arr2[], int n) { // auxiliary array arr3 to store // elements of arr1 & arr2 int arr3[2*n], k = 0; for (int i = 0; i < n; i++) arr3[k++] = arr1[i]; for (int i = 0; i < n; i++) arr3[k++] = arr2[i]; // hash table to store n largest // unique elements unordered_set<int> hash; // sorting arr3 in decreasing order sort(arr3, arr3 + 2 * n, compare); // finding n largest unique elements // from arr3 and storing in hash int i = 0; while (hash.size() != n) { // if arr3 element not present in hash, // then store this element in hash if (hash.find(arr3[i]) == hash.end()) hash.insert(arr3[i]); i++; } // store that elements of arr2 in arr3 // that are present in hash k = 0; for (int i = 0; i < n; i++) { // if arr2 element is present in hash, // store it in arr3 if (hash.find(arr2[i]) != hash.end()) { arr3[k++] = arr2[i]; hash.erase(arr2[i]); } } // store that elements of arr1 in arr3 // that are present in hash for (int i = 0; i < n; i++) { // if arr1 element is present in hash, // store it in arr3 if (hash.find(arr1[i]) != hash.end()) { arr3[k++] = arr1[i]; hash.erase(arr1[i]); } } // copying 1st n elements of arr3 to arr1 for (int i = 0; i < n; i++) arr1[i] = arr3[i]; } // Function to print array elements void printArray(int arr[], int n) { for (int i = 0; i < n; i++) cout << arr[i] << " "; cout << endl; } // Driver Code int main() { int array1[] = { 7, 4, 8, 0, 1 }; int array2[] = { 9, 7, 2, 3, 6 }; int size = sizeof(array1) / sizeof(array1[0]); maximizeArray(array1, array2, size); printArray(array1, size); } Output: 9 7 6 4 8 Time complexity: O(n * log n).Space complexity: O(n) as array and set has been created. Please refer complete article on Maximize elements using another array for more details! Comment More infoAdvertise with us Next Article C++ Program to Maximize elements using another array kartik Follow Improve Article Tags : Sorting Hash C++ Programs C++ DSA Arrays cpp-unordered_set +3 More Practice Tags : CPPArraysHashSorting Similar Reads C++ Program to Find Largest Element in an Array In this article, we will learn to write a C++ program to find the largest element in the given array arr of size N. The element that is greater than all other elements is the largest element in the array. Recommended PracticeHelp a Thief!!!Try It! One of the most simplest and basic approaches to fin 2 min read How to Find the Maximum Element of an Array using STL in C++? Given an array of n elements, the task is to find the maximum element using STL in C++.ExamplesInput: arr[] = {11, 13, 21, 45, 8}Output: 45Explanation: 45 is the largest element of the array.Input: arr[] = {1, 9, 2, 5, 7}Output: 9Explanation: 9 is the largest element of the array.STL provides the fo 3 min read C++ Program to Find the Minimum and Maximum Element of an Array Given an array, write functions to find the minimum and maximum elements in it. Example: C++ // C++ program to find minimum (or maximum) element // in an array. #include <bits/stdc++.h> using namespace std; int getMin(int arr[], int n) { int res = arr[0]; for (int i = 1; i < n; i++) res = 3 min read Program to find largest element in an array using Dynamic Memory Allocation Given an array arr[] consisting of N integers, the task is to find the largest element in the given array using Dynamic Memory Allocation. Examples: Input: arr[] = {4, 5, 6, 7} Output: 7Explanation:The largest element present in the given array is 7. Input: arr[] = {8, 9, 10, 12} Output: 12Explanati 5 min read C++ Program to Find the Second Largest Element in an Array In C++, an array is a data structure that is used to store multiple values of similar data types in a contiguous memory location. In this article, we will learn how to find the second largest element in an array in C++. Examples: Input: arr[] = {34, 5, 16, 14, 56, 7, 56} Output: 34 Explanation: The 3 min read C++ Program to Find k maximum elements of array in original order Given an array arr[] and an integer k, we need to print k maximum elements of given array. The elements should printed in the order of the input.Note : k is always less than or equal to n. Examples: Input : arr[] = {10 50 30 60 15} k = 2 Output : 50 60 The top 2 elements are printed as per their app 3 min read Maximize the rightmost element of an array in k operations in Linear Time Given an array arr[ ] of size N and an integer p, the task is to find maximum possible value of rightmost element of array arr[ ] performing at most k operations.In one operation decrease arr[i] by p and increase arr[i+1] by p. Examples: Input: N = 4, p = 2, k = 5, arr = {3, 8, 1, 4}Output: 8Explana 9 min read C++ Program to Maximize count of corresponding same elements in given Arrays by Rotation Given two arrays arr1[] and arr2[] of N integers and array arr1[] has distinct elements. The task is to find the maximum count of corresponding same elements in the given arrays by performing cyclic left or right shift on array arr1[]. Examples:  Input: arr1[] = { 6, 7, 3, 9, 5 }, arr2[] = { 7, 3, 3 min read Maximize distance between two elements of Array by at most X swaps Given an array arr[] of unique elements and three integers X, A, and B. The task is to print the maximum possible distance between elements A and B in atmost X swaps with the adjacent elements. Examples: Input: arr[] = {5, 1, 3, 2}, X = 1, A = 2, B = 3 Output: 2 Explanation: 3 is swapped with it's a 11 min read C++ Program to Find maximum element of each row in a matrix Given a matrix, the task is to find the maximum element of each row. Examples: Input : [1, 2, 3] [1, 4, 9] [76, 34, 21] Output : 3 9 76 Input : [1, 2, 3, 21] [12, 1, 65, 9] [1, 56, 34, 2] Output : 21 65 56 Approach : The approach is very simple. The idea is to run the loop for no_of_rows. Check each 2 min read Like