search
HomeBackend DevelopmentC++Which array element has the smallest sum of absolute differences?
Which array element has the smallest sum of absolute differences?Aug 29, 2023 am 10:09 AM
array elementssmallestsum of absolute differences

Which array element has the smallest sum of absolute differences?

Here, we will see an interesting question. We have an array 'a' containing N elements. We need to find an element x that minimizes the value of |a[0] - x| |a[1] - x| ... |a[n-1] - x|. Then we need to find the minimized sum.

Suppose the array is: {1, 3, 9, 6, 3}, and now x is 3. So the sum is |1 - 3| |3 - 3| |9 - 3| |6 - 3| |3 - 3| = 11.

To solve this problem, we need to choose the median of the array as x. If the size of the array is even, there will be two median values. They are all the best choices for x.

Algorithm

minSum(arr, n)

begin
   sort array arr
   sum := 0
   med := median of arr
   for each element e in arr, do
      sum := sum + |e - med|
   done
   return sum
end

Example

#include <iostream>
#include <algorithm>
#include <cmath>
using namespace std;
int minSum(int arr[], int n){
   sort(arr, arr + n);
   int sum = 0;
   int med = arr[n/2];
   for(int i = 0; i<n; i++){
      sum += abs(arr[i] - med);
   }
   return sum;
}
int main() {
   int arr[5] = {1, 3, 9, 6, 3};
   int n = 5;
   cout << "Sum : " << minSum(arr, n);
}

Output

Sum : 11

The above is the detailed content of Which array element has the smallest sum of absolute differences?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
Java如何求数组元素的最大和最小值Java如何求数组元素的最大和最小值Oct 08, 2023 am 09:44 AM

Java中使用`Arrays.stream()`函数将数组转换为流,然后使用`min()`和`max()`函数来计算最小值和最大值。

数组元素的绝对差值之和最小的是哪一个?数组元素的绝对差值之和最小的是哪一个?Aug 29, 2023 am 10:09 AM

在这里,我们将看到一个有趣的问题。我们有一个包含N个元素的数组'a'。我们需要找到一个元素x,使得|a[0]-x|+|a[1]-x|+...+|a[n-1]-x|的值最小化。然后我们需要找到最小化的和。假设数组为:{1,3,9,6,3},现在x为3。所以和为|1-3|+|3-3|+|9-3|+|6-3|+|3-3|=11。为了解决这个问题,我们需要选择数组的中位数作为x。如果数组的大小是偶数,则会有两个中位数值。它们都是x的最佳选择。算法minSum(arr,n)begin&nbsp;&

PHP中如何使用implode函数将数组元素连接成字符串PHP中如何使用implode函数将数组元素连接成字符串Jun 26, 2023 pm 02:02 PM

在PHP编程中,implode函数是一种非常常用的函数,可以将一个数组中的元素连接成一个字符串。使用该函数可以节省开发人员编写大量连接字符串的代码,更加高效。implode的基本语法为:stringimplode(string$glue,array$pieces)该函数接收两个参数:$glue表示要连接数组元素的分隔符,$pieces表示

使用PHP的implode()函数将数组元素连接成带分隔符的字符串使用PHP的implode()函数将数组元素连接成带分隔符的字符串Nov 04, 2023 pm 02:37 PM

使用PHP的implode()函数将数组元素连接成带分隔符的字符串,代码示例如下:&lt;?php//定义一个数组$array=array('apple','banana','orange');//使用implode()函数将数组元素连接成带分隔符的字符串$delimiter=',';//定义分隔符$result=im

在C语言中,出现多次的数组元素是什么?在C语言中,出现多次的数组元素是什么?Sep 05, 2023 am 09:05 AM

Array是一个容器,其中包含相同数据类型的元素,长度需要事先定义。数组中的元素可以以任何顺序和任意次数出现。因此,在这个程序中,我们将找出数组中出现多次的元素。问题描述-我们已经给出一个数组arr[],我们需要找出数组中重复出现的元素,并打印它们。让我们举一个例子来更好地理解。例子:Input:arr[]={5,11,11,2,1,4,2}Output:112解释我们有一个包含一些元素的数组arr,首先我们会在重复函数中比较下一个元素。重复函数用于在数组中找到重复的元素。在重复函数中,我们使用

C程序在数组中找到最小和最大的质数C程序在数组中找到最小和最大的质数Sep 05, 2023 pm 04:29 PM

问题陈述给定一个包含n个正整数的数组。我们必须找到素数具有最小值和最大值的数字。如果给定的数组是-arr[]={10,4,1,12,13,7,6,2,27,33}thenminimumprimenumberis2andmaximumprimenumberis13算法1.Findmaximumnumberfromgivennumber.LetuscallitmaxNumber2.Generateprimenumbersfrom1tomaxNumberandstoretheminadynamicar

大于p的最小三角数大于p的最小三角数Sep 20, 2023 pm 07:13 PM

我们将讨论三角形数以及如何找到仅大于给定数字“num”的最小三角形数。我们先讨论什么是三角数,然后找出比“num”大的最小三角数我们将看到针对同一问题的两种不同方法。在第一种方法中,我们将运行一个简单的循环来生成输出,而在第二种方法中,我们将首先生成一个用于计算所需数字的通用公式,然后直接应用该公式来获得最小的三角形数。问题陈述我们必须找出仅大于“num”的最小三角形数。我们有多个装有球的盒子。对于所有盒子来说,盒子包含的球的数量都是一个不同的三角形数字。这些盒子从1到n编号。我们必须找出从盒子

使用PHP array_keys()函数获取数组中的元素键使用PHP array_keys()函数获取数组中的元素键Jun 27, 2023 am 08:54 AM

在使用PHP开发过程中,经常需要操作数组。而在数组中,我们通常会需要获取元素的键值,以便于后续操作。为此,PHP提供了一个非常方便的函数array_keys(),能够快速地从数组中获取元素的键。array_keys()函数的用法非常简单,其基本语法如下:arrayarray_keys(array$array[,mixed$search_valu

See all articles

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

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use