


Reduce an array to an integer using the given operation, implemented in C++
Given an integer variable Number as input. Let us consider an array containing elements in the range 1 to Number. The order of the elements can be arbitrary. If we perform Number-1 operations on the array, the operation is as follows:
We select two elements A and B from the array
from Remove A and B from the array
Add the sum of the squares of A and B to the array
Eventually we will get a single integer value ;The goal is to find the maximum possible value for that element.
Using priority queue
In order to maximize the final result, we need to choose A and B to make them as large as possible.
In order to find the largest A and B, we will use a priority queue to store the element values in it.
Priority queue stores elements in descending order.
The topmost element has the largest value, and so on. So after popping both elements, we'll push their squares into the queue again.
Will pop and push Number-1 times to get the desired result.
Example
Input - Number=2
Output -A single element after the array is reduced :5
Explanation - Assume that the elements in the array are [1 2]
After inserting into the priority queue: 2 1
A=5, B =4 : A2 B2=1 4=5
Last element: 5
Input -Number=5
Output - Single element after array reduction: 5
Explanation - Assume that the elements in the array are [5 1 2 4 3]
After inserting into the priority queue: 5 4 3 2 1
A=5, B=4 : A2 B2=25 16=41 : 41 3 2 1
A=41, B=3 : A2 B2=1681 9=1690 : 1690 2 1
A=1690, B=2 : A2 B2=1681 4=2856104 : 2856104 1
A=2856104 , B=1 : A2 B 2=1187163712 1=1187163713 : 1187163713
Last element: 1187163713
The method used in the following program is as follows
In this method, we will give priority The queue is set up to store the elements of the array in descending order. Pop the two largest elements and push the sum of their squares back into the queue until only one value remains.
Get the input variable Number.
Set the data type of the result to long long integer - lli
The function reduceArray(int Num) accepts the input number and returns it using the above The largest single integer calculated by the operation.
Use a priority queue pQueue.
Use a while loop to fill numbers 1 to N into pQueue.
When i
Now pQueue stores integers 1 to N in descending order, with size N .
Use a while loop to traverse pQueue until its size >= 1.
Set the maximum value to var1=pQueue.top() and pop it.
Set the next maximum value to var2=pQueue.top() and pop it.
Set var1 to its square and set var2 to its square.
Push var1 var2 into pQueue again.
At the end of the while loop, return the top element.
Print the result in the main function.
Example
#include <bits/stdc++.h> using namespace std; #define lli long long int int reduceArray(int Num){ priority_queue<lli> pQueue; int i=1; while(i<=Num){ pQueue.push(i); i=i+1; } while (pQueue.size() > 1) { lli var1 = pQueue.top(); pQueue.pop(); lli var2 = pQueue.top(); pQueue.pop(); var1=var1*var1; var2=var2*var2; pQueue.push(var1+var2); } return pQueue.top(); } int main(){ int Number = 5; cout<<"Single element after array reduction: "<<reduceArray(Number); return 0; }
Output
If we run the above code, the following output will be generated
Single element after array reduction: 1187163713
The above is the detailed content of Reduce an array to an integer using the given operation, implemented in C++. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The method of using a foreach loop to remove duplicate elements from a PHP array is as follows: traverse the array, and if the element already exists and the current position is not the first occurrence, delete it. For example, if there are duplicate records in the database query results, you can use this method to remove them and obtain results without duplicate records.

The performance comparison of PHP array key value flipping methods shows that the array_flip() function performs better than the for loop in large arrays (more than 1 million elements) and takes less time. The for loop method of manually flipping key values takes a relatively long time.

Methods for deep copying arrays in PHP include: JSON encoding and decoding using json_decode and json_encode. Use array_map and clone to make deep copies of keys and values. Use serialize and unserialize for serialization and deserialization.

The best practice for performing an array deep copy in PHP is to use json_decode(json_encode($arr)) to convert the array to a JSON string and then convert it back to an array. Use unserialize(serialize($arr)) to serialize the array to a string and then deserialize it to a new array. Use the RecursiveIteratorIterator to recursively traverse multidimensional arrays.

Multidimensional array sorting can be divided into single column sorting and nested sorting. Single column sorting can use the array_multisort() function to sort by columns; nested sorting requires a recursive function to traverse the array and sort it. Practical cases include sorting by product name and compound sorting by sales volume and price.

PHP's array_group_by function can group elements in an array based on keys or closure functions, returning an associative array where the key is the group name and the value is an array of elements belonging to the group.

Ele.me is a software that brings together a variety of different delicacies. You can choose and place an order online. The merchant will make it immediately after receiving the order. Users can bind WeChat through the software. If you want to know the specific operation method , remember to check out the PHP Chinese website. Instructions on how to bind WeChat to Ele.me: 1. First open the Ele.me software. After entering the homepage, we click [My] in the lower right corner; 2. Then in the My page, we need to click [Account] in the upper left corner; 3. Then come to the personal information page where we can bind mobile phones, WeChat, Alipay, and Taobao. Here we click [WeChat]; 4. After the final click, select the WeChat account that needs to be bound in the WeChat authorization page and click Just [Allow];

The PHP array merging and deduplication algorithm provides a parallel solution, dividing the original array into small blocks for parallel processing, and the main process merges the results of the blocks to deduplicate. Algorithmic steps: Split the original array into equally allocated small blocks. Process each block for deduplication in parallel. Merge block results and deduplicate again.
