The world-known gangster Vito Deadstone is moving to New York. He has a very big family there, all of them living in Lamafia Avenue. Since he will visit all his relatives very often, he is trying to find a house close to them.
Vito wants to minimize the total distance to all of them and has blackmailed you to write a program that solves his problem.
Input
The input consists of several test cases. The first line contains the number of test cases.
For each test case you will be given the integer number of relatives r (0 < r < 500) and the street numbers (also integers) s1, s2, … , si, … , sr where they live (0 < si < 30000 ). Note that several
relatives could live in the same street number.
Output
For each test case your program must write the minimal sum of distances from the optimal Vito’s house to each one of his relatives. The distance between two street numbers si and sj is dij = |si − sj |.
Sample Input
2
2 2 4
3 2 4 6
Sample Output
2
4
题意:
给定一组整数,找出其中一个数n,使得该数与其他数的差的绝对值之和s最小,输出s(即求中位数与数组中其他数的差的绝对值之和)
代码:
#include <iostream>
#include<algorithm>
#include<cmath>
using namespace std;
int main()
{
int n,i,m,k,d;
int num[500];
cin>>n;
while(n>0)
{
cin>>m;
d=0;
for(i=0;i<m;i++)
{
cin>>num[i];
}
sort(num,num+m);//排序,默认为升序
k=m/2;//得到中位数的下标
for(i=0;i<m;i++)
{
d+=abs(num[i]-num[k]);
}
cout<<d<<endl;
n--;
}
return 0;
}

解决一个实际问题:帮世界知名黑帮头目Vito寻找一个位于其众多亲戚家附近的房子,通过编写程序来确定最佳位置,使Vito到每个亲戚家的距离总和最短。
203

被折叠的 条评论
为什么被折叠?



