A10092 | Load Balancing
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $m_{i}$ 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 $m_{a}-m_{b}$ , 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.
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 $m_{a}-m_{b}$ , 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.
输入格式
The first line contains positive number $n$ ( $1<=n<=10^{5}$ ) — the number of the servers.
The second line contains the sequence of non-negative integers $m_{1},m_{2},...,m_{n}$ ( $0<=m_{i}<=2·10^{4}$ ), where $m_{i}$ is the number of tasks assigned to the $i$ -th server.
The second line contains the sequence of non-negative integers $m_{1},m_{2},...,m_{n}$ ( $0<=m_{i}<=2·10^{4}$ ), where $m_{i}$ is the number of tasks assigned to the $i$ -th server.
输出格式
Print the minimum number of seconds required to balance the load.
输入输出样例
输入 #1
2 1 6
输出 #1
2
输入 #2
7 10 11 10 11 10 11 11
输出 #2
0
输入 #3
5 1 2 3 4 5
输出 #3
3
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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted