我们有一个正整数类型的数组,假设是arr[],大小任意。任务是重新排列数组,使得当我们将一个元素与其相邻元素相乘,然后将所有结果元素相加时,返回最小的和。
让我们看看不同的输入输出情况:
输入 – int arr[] = {2, 5, 1, 7, 5, 0, 1, 0}
输出 – 重新排列数组以最小化和,即连续一对元素的乘积为:7 0 5 0 5 1 2 1
解释 – 我们有一个大小为8的整数数组。现在,我们将重新排列数组,即7 0 5 0 5 1 2 1。我们将检查是否返回最小和,即7 * 0 + 5 * 0 + 5 * 1 + 2 * 1 = 0 + 0 + 5 + 2 = 7。
立即学习“C++免费学习笔记(深入)”;
输入 – int arr[] = {1, 3, 7, 2, 4, 3}
输出 – 重新排列数组以最小化和,即连续一对元素的乘积为:7 1 4 2 3 3
解释 – 我们有一个大小为6的整数数组。现在,我们将重新排列数组,即7 1 4 2 3 3。我们将检查是否返回最小和,即7 * 1 + 4 * 2 + 3 * 3 = 7 + 8 + 9 = 24。
下面程序中使用的方法如下:
输入一个整数类型的数组并计算数组的大小。
使用C++ STL的sort方法对数组进行排序,将数组和数组的大小传递给sort函数。
声明一个整数变量,并将其设置为调用函数的返回值。
Rearrange_min_sum(arr, size)
Inside the function Rearrange_min_sum(arr, size)
Create a variable, let’s say, ‘even’ and ‘odd’ type of type vector which stores integer variables.
Declare a variable as temp and total and initialise it with 0.
Start loop FOR from i to 0 till i less than size. Inside the loop, check IF i is less than size/2 then push arr[i] to odd vector ELSE, push arr[i] to even vector
Call the sort method by passing even.begin(), even.end() and greater().
Start loop FOR from i to 0 till i less than even.size(). Inside the loop, set arr[temp++] to even[j], arr[temp++] to odd[j] and total to total + even[j] * odd[j]
Return total
Print the result.
Example
#include using namespace std;int Rearrange_min_sum(int arr[], int size){ vector even, odd; int temp = 0; int total = 0; for(int i = 0; i ()); for(int j = 0; j输出
如果我们运行上面的代码,它将生成以下输出
Rearrangement of an array to minimize sum i.e. 7 of product of consecutive pair elements is: 7 0 5 0 5 1 2 1登录后复制
以上就是重新排列一个数组,以使连续一对元素的乘积之和最小,使用C++编写的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2587294.html