Table of Contents
ExampleExample
method one
algorithm
Example
Output
Method Two
Home Backend Development C++ Maximum possible array sum after performing the given operation

Maximum possible array sum after performing the given operation

Aug 28, 2023 pm 01:17 PM
operate maximum array sum

Maximum possible array sum after performing the given operation

In this question, we will perform the given operation on the array elements and find the final maximum sum.

Here, in each operation, we can select at most X[p] elements from the array and replace them with Y[p] elements to maximize the sum.

In the simple approach, we will find X[p] array elements that are smaller than Y[p] elements and replace them with Y[p].

In an efficient approach, we will use a priority queue to get the maximum sum.

Problem Statement− We are given a nums[] array containing N numbers. At the same time, we are given X[] and Y[] arrays containing M integers. We need to perform the following operations on the nums[] array.

  • We need to perform M operations on each element of the X[] and Y[] elements. In each operation, we need to select the largest X[p] element from the array nums[] and replace it with Y[p].

The given task is to find the maximum sum of the elements of the nums[] array after performing M operations.

ExampleExample

enter

nums[] = {10, 8, 7, 60, 20, 18, 30, 60}; m = 3; x[] = {1, 2, 5}; y[] = {500, 10, 2};
Copy after login

Output

708
Copy after login

Explanation − Let’s perform each operation one by one.

  • In the first operation, we will replace 7 elements with 500. So, the array becomes {10, 8, 500, 60, 20, 18, 30, 60}.

  • In the second operation, we can replace up to 2 elements with 10, but we only have 1 element less than 10. So, we replace 8 with 10 and the array becomes {10, 10, 500, 60, 20, 18, 30, 60}.

  • In the third operation, we can replace up to 5 elements with 2, but there are no elements less than 2 in the array. Therefore, we will not replace any elements.

enter

nums[] = {30, 40, 50, 50, 60}; m = 3; x[] = {2, 3, 6}; y[] = {10, 8, 21};
Copy after login

Output

230
Copy after login

Explanation − All elements of the y[] array are smaller than the elements of the original array. Therefore, we don't need to replace any element of the given array to get the maximum sum.

enter

nums[] = {30, 40, 50, 50, 60}; m = 3; x[] = {2, 4, 5}; y[] = {50, 60, 100};
Copy after login

Output

500
Copy after login

Explanation − Here, we can replace up to x[p] elements in each operation. In the last operation, we can replace each element in the array with 100, resulting in a maximum sum equal to 100.

method one

In this method, we will iterate over the x[] and y[] arrays. In each iteration, we will sort the array to get at most x[p] array elements that are smaller than y[p] elements and replace them with y[p].

algorithm

Step 1 − Initialize ‘maxSum’ to 0, which is used to store the maximum sum of array elements.

Step 2 − Start traversing the x[] and y[] array elements.

Step 3 − Store the value of x[p] in a temporary variable and sort the nums[] array.

Step 4− Start traversing the sorted array within the loop.

Step 5 − If the temperature is greater than 0 and nums[q] is less than y[p], update nums[q] with y[p] and decrement the temp value by 1.

Step 6− Outside the loop, start traversing the updated array, take out the sum of all array elements and store it in the maxSum variable.

Step 7 − Return maxSum at the end of the function.

Example

#include <bits/stdc++.h>
using namespace std;

int getMaxSum(int nums[], int n, int q, int x[], int y[]) {
    int maxSum = 0;
    // Traverse X[] and Y[] array
    for (int p = 0; p < q; p++) {
        // Replacing x[p] number of elements of nums[] array with y[p] if they are lesser than y[p]
        int temp = x[p];
        sort(nums, nums + n);
        for (int q = 0; q < n; q++) {
            if (temp > 0 && nums[q] < y[p]) {
                nums[q] = y[p];
                temp--;
            }
        }
    }
    // Sum of the array
    for (int p = 0; p < n; p++) {
        maxSum += nums[p];
    }
    return maxSum;
}
int main() {
    int nums[] = {10, 8, 7, 60, 20, 18, 30, 60};
    int n = (sizeof nums) / (sizeof nums[0]);
    int m = 3;
    int x[] = {1, 2, 5};
    int y[] = {500, 10, 2};
    cout << "The maximum sum we can get by replacing the array values is " << getMaxSum(nums, n, m, x, y);
    return 0;
}
Copy after login

Output

The maximum sum we can get by replacing the array values is 708
Copy after login
Copy after login

Time complexity− O(M*NlogN), where O(M) is used to traverse all queries and O(NlogN) is used to sort the array.

Space complexity− For sorting an array, the space complexity is O(N).

Method Two

In this approach, we will use a priority queue to store pairs of array elements and their occurrence times.

For example, we will push the {nums[p], 1} pair into the priority queue for each array element. At the same time, we push the pair {y[p], x[p]} into the priority queue. In a priority queue, pairs will be sorted based on the first element. Therefore, we can take the top N elements from the queue. Here, for the pair {y[p],x[p]}, we can take out the y[p] elements x[p] times, and we need to take out a total of N elements to maximize the sum.

algorithm

Step 1 − Initialize the ‘maxSum’ with 0 and the priority queue to store the pair of elements and their number of occurrences.

Step 2− For all array elements, insert {nums[p], 1} pairs into the queue.

Step 3 − Then, insert the {y[p], x[p]} pair into the priority queue.

Step 4− Iterate until n is greater than 0.

Step 4.1 − Remove the first element from the priority queue.

Step 4.2 − Add first_ele * max(n, second_ele) to the sum. Here, we use max(n, second_ele) to handle the last case.

Step 4.3 − Subtract second_ele from n.

Step 5− Return maxSum.

Example

#include <bits/stdc++.h>
using namespace std;

int getMaxSum(int nums[], int n, int m, int x[], int y[]) {
    int maxSum = 0, p;
    // To get maximum sum
    priority_queue<pair<int, int>> p_que;
    // Insert nums[] array pairs into the queue
    for (p = 0; p < n; p++)
        p_que.push({nums[p], 1});
    // Push replacement pairs
    for (p = 0; p < m; p++)
        p_que.push({y[p], x[p]});
    // Add the first N elements of the priority queue in the sum
    while (n > 0) {
        // Get top element of priority queue
        auto temp = p_que.top();
        // Remove top element
        p_que.pop();
        // Add value to the sum
        maxSum += temp.first * min(n, temp.second);
        // Change N
        n -= temp.second;
    }
    return maxSum;
}
int main() {
    int nums[] = {10, 8, 7, 60, 20, 18, 30, 60};
    int n = (sizeof nums) / (sizeof nums[0]);
    int m = 3;
    int x[] = {1, 2, 5};
    int y[] = {500, 10, 2};
    cout << "The maximum sum we can get by replacing the array values is " << getMaxSum(nums, n, m, x, y);
    return 0;
}
Copy after login

Output

The maximum sum we can get by replacing the array values is 708
Copy after login
Copy after login

Time complexity - O(N*logN m*logm), where O(N) and O(m) are used to traverse the given array, and O(logN) are used to insert and delete elements in the queue.

Space complexity - O(N M) for storing pairs in the queue.

In the first method, we need to sort the array in each iteration to find the smallest x[p] elements. Use a priority queue to automatically sort elements as they are inserted or removed because it uses the heap data structure. Therefore, it improves the performance of your code.

The above is the detailed content of Maximum possible array sum after performing the given operation. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PyCharm usage tutorial: guide you in detail to run the operation PyCharm usage tutorial: guide you in detail to run the operation Feb 26, 2024 pm 05:51 PM

PyCharm is a very popular Python integrated development environment (IDE). It provides a wealth of functions and tools to make Python development more efficient and convenient. This article will introduce you to the basic operation methods of PyCharm and provide specific code examples to help readers quickly get started and become proficient in operating the tool. 1. Download and install PyCharm First, we need to go to the PyCharm official website (https://www.jetbrains.com/pyc

What is sudo and why is it important? What is sudo and why is it important? Feb 21, 2024 pm 07:01 PM

sudo (superuser execution) is a key command in Linux and Unix systems that allows ordinary users to run specific commands with root privileges. The function of sudo is mainly reflected in the following aspects: Providing permission control: sudo achieves strict control over system resources and sensitive operations by authorizing users to temporarily obtain superuser permissions. Ordinary users can only obtain temporary privileges through sudo when needed, and do not need to log in as superuser all the time. Improved security: By using sudo, you can avoid using the root account during routine operations. Using the root account for all operations may lead to unexpected system damage, as any mistaken or careless operation will have full permissions. and

Linux Deploy operation steps and precautions Linux Deploy operation steps and precautions Mar 14, 2024 pm 03:03 PM

LinuxDeploy operating steps and precautions LinuxDeploy is a powerful tool that can help users quickly deploy various Linux distributions on Android devices, allowing users to experience a complete Linux system on their mobile devices. This article will introduce the operating steps and precautions of LinuxDeploy in detail, and provide specific code examples to help readers better use this tool. Operation steps: Install LinuxDeploy: First, install

What to do if you forget to press F2 for win10 boot password What to do if you forget to press F2 for win10 boot password Feb 28, 2024 am 08:31 AM

Presumably many users have several unused computers at home, and they have completely forgotten the power-on password because they have not been used for a long time, so they would like to know what to do if they forget the password? Then let’s take a look together. What to do if you forget to press F2 for win10 boot password? 1. Press the power button of the computer, and then press F2 when turning on the computer (different computer brands have different buttons to enter the BIOS). 2. In the bios interface, find the security option (the location may be different for different brands of computers). Usually in the settings menu at the top. 3. Then find the SupervisorPassword option and click it. 4. At this time, the user can see his password, and at the same time find the Enabled next to it and switch it to Dis.

How to disable the action button on iPhone 15 Pro and 15 Pro Max How to disable the action button on iPhone 15 Pro and 15 Pro Max Nov 07, 2023 am 11:17 AM

Apple brought some Pro-exclusive hardware features to iPhone 15 Pro and 15 Pro Max, which attracted everyone’s attention. We're talking titanium frames, sleek designs, the new A17 Pro chipset, an exciting 5x telephoto lens, and more. Of all the bells and whistles added to the iPhone 15 Pro models, the action button remains a prominent and prominent feature. Needless to say, it is a useful addition to launching actions on your iPhone. That said, you could accidentally hold down the Action button and trigger the feature inadvertently. Frankly, it's annoying. To avoid this, you should disable the action button on iPhone 15 Pro and 15 Pro Max. let

Huawei Mate60 Pro screenshot operation steps sharing Huawei Mate60 Pro screenshot operation steps sharing Mar 23, 2024 am 11:15 AM

With the popularity of smartphones, the screenshot function has become one of the essential skills for daily use of mobile phones. As one of Huawei's flagship mobile phones, Huawei Mate60Pro's screenshot function has naturally attracted much attention from users. Today, we will share the screenshot operation steps of Huawei Mate60Pro mobile phone, so that everyone can take screenshots more conveniently. First of all, Huawei Mate60Pro mobile phone provides a variety of screenshot methods, and you can choose the method that suits you according to your personal habits. The following is a detailed introduction to several commonly used interceptions:

Custom Action Buttons: Explore Personalization on iPhone 15 Pro Custom Action Buttons: Explore Personalization on iPhone 15 Pro Sep 24, 2023 pm 03:05 PM

Apple's iPhone 15 Pro and iPhone 15 Pro Max introduce a new programmable action button that replaces the traditional ring/silent switch above the volume buttons. Read on to learn what the Action button does and how to customize it. A new action button on Apple iPhone 15 Pro models replaces the traditional iPhone switch that activates Ring and Silent. By default, the new button will still activate both functions with a long press, but you can also have a long press perform a range of other functions, including quick access to the camera or flashlight, activating voice memos, focus mode, translation, and accessibility features like magnifier . You can also associate it with a single shortcut, opening up a ton of other possibilities

CSS web page scroll monitoring: monitor web page scroll events and perform corresponding operations CSS web page scroll monitoring: monitor web page scroll events and perform corresponding operations Nov 18, 2023 am 10:35 AM

CSS web page scroll monitoring: monitor web page scroll events and perform corresponding operations. With the continuous development of front-end technology, the effects and interactions of web pages are becoming more and more rich and diverse. Among them, scroll monitoring is a common technology that can perform some special effects or operations based on the scroll position when the user scrolls the web page. Generally speaking, scroll monitoring can be implemented through JavaScript. However, in some cases, we can also achieve the effect of scroll monitoring through pure CSS. This article will introduce how to implement scrolling of web pages through CSS

See all articles