C. Load Balancing
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned to the i-th server.

In order to balance the load for each server, you want to reassign some tasks to make the difference between the most loaded server and the least loaded server as small as possible. In other words you want to minimize expression ma - mb, where a is the most loaded server and b is the least loaded one.

In one second you can reassign a single task. Thus in one second you can choose any pair of servers and move a single task from one server to another.

Write a program to find the minimum number of seconds needed to balance the load of servers.

Input

The first line contains positive number n (1 ≤ n ≤ 105) — the number of the servers.

The second line contains the sequence of non-negative integers m1, m2, ..., mn (0 ≤ mi ≤ 2·104), where mi is the number of tasks assigned to the i-th server.

Output

Print the minimum number of seconds required to balance the load.

Sample test(s)
input
2
1 6
output
2
input
7
10 11 10 11 10 11 11
output
0
input
5
1 2 3 4 5
output
3
Note

In the first example two seconds are needed. In each second, a single task from server #2 should be moved to server #1. After two seconds there should be 3 tasks on server #1 and 4 tasks on server #2.

In the second example the load is already balanced.

A possible sequence of task movements for the third example is:

  1. move a task from server #4 to server #1 (the sequence m becomes: 2 2 3 3 5);
  2. then move task from server #5 to server #1 (the sequence m becomes: 3 2 3 3 4);
  3. then move task from server #5 to server #2 (the sequence m becomes: 3 3 3 3 3).

The above sequence is one of several possible ways to balance the load of servers in three seconds.

平均数如果整除,好办 比如  1 2 3 4 5 变成 3 3 3 3 3

不整除  如  1 2 3 5  取平均数  2 2 2 2 然后把多出来的加一就是 2 3 3 3

就是这样

#include<stdio.h>
//#include<bits/stdc++.h>
#include<string.h>
#include<iostream>
#include<math.h>
#include<sstream>
#include<set>
#include<queue>
#include<map>
#include<vector>
#include<algorithm>
#include<limits.h>
#define inf 0x3fffffff
#define INF 0x3f3f3f3f
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define ULL unsigned long long
using namespace std;
int i,j;
int t;
int n,m;
int a[100000];
int b[100000];
int main()
{
int sum=0;
int ans=0;
int mod=0;
cin>>n;
int n_1=n;
for(i=0; i<n; i++)
{
cin>>a[i];
sum+=a[i];
}
sort(a,a+n);
mod=sum%n;
for(i=0; i<n; i++)
{
b[i]=sum/n;
}
for(i=mod;i>0;i--)
{
b[--n_1]++;
}
for(i=0;i<n;i++)
{
if(a[i]>b[i])
{
break;
}
ans+=b[i]-a[i];
}
cout<<ans<<endl;
return 0;
}

  

最新文章

  1. url中的特殊字符问题
  2. c#接口与抽象类的区别
  3. SQL---Chapter01 数据库和SQL
  4. Centos 内存占满 释放内存
  5. 查看数据库磁盘使用多少G:
  6. [转]Windows多进程编程
  7. Qt make clickable label 制作可点击的Label控件
  8. Hibernate注解方法使用总结
  9. str_翻转字符串
  10. 动态创建和移除HTML标签
  11. javascript中对条件推断语句的优化
  12. sftp 服务器外网访问设置
  13. 他们最先开发微信小程序,为何现在又退出了?
  14. 使用Spring访问Mongodb的方法大全——Spring Data MongoDB查询指南
  15. C++与蓝图互调
  16. POJ 3616 奶牛挤奶
  17. VUE通过id从列表页跳转到相对的详情页
  18. 使用java的wsimport.exe生成wsdl的客户端代码【转】
  19. jQuery操作DOM节点的方法总结
  20. ubuntu16.04 LTS Server 安装mysql phpmyadmin apache2 php5.6环境

热门文章

  1. WEB-INF与Webroot
  2. C++知识点总结(四)——面向对象的编程细节总结
  3. JAVA基础知识总结11(异常)
  4. saltstact的安装与配置
  5. day17-jdbc 2.jdbc介绍
  6. C++对ASCII文件的操作例子
  7. Entity Framework Tutorial Basics(18):DBEntityEntry Class
  8. struts学习记录
  9. Umbraco 中获取一个media item的文件路径 file path
  10. DiscreteFrechetDist