A10673 | Holiday Of Equality
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
In Berland it is the holiday of equality. In honor of the holiday the king decided to equalize the welfare of all citizens in Berland by the expense of the state treasury.
Totally in Berland there are $n$ citizens, the welfare of each of them is estimated as the integer in $a_{i}$ burles (burle is the currency in Berland).
You are the royal treasurer, which needs to count the minimum charges of the kingdom on the king's present. The king can only give money, he hasn't a power to take away them.
Totally in Berland there are $n$ citizens, the welfare of each of them is estimated as the integer in $a_{i}$ burles (burle is the currency in Berland).
You are the royal treasurer, which needs to count the minimum charges of the kingdom on the king's present. The king can only give money, he hasn't a power to take away them.
输入格式
The first line contains the integer $n$ ( $1<=n<=100$ ) — the number of citizens in the kingdom.
The second line contains $n$ integers $a_{1},a_{2},...,a_{n}$ , where $a_{i}$ ( $0<=a_{i}<=10^{6}$ ) — the welfare of the $i$ -th citizen.
The second line contains $n$ integers $a_{1},a_{2},...,a_{n}$ , where $a_{i}$ ( $0<=a_{i}<=10^{6}$ ) — the welfare of the $i$ -th citizen.
输出格式
In the only line print the integer $S$ — the minimum number of burles which are had to spend.
输入输出样例
输入 #1
5 0 1 2 3 4
输出 #1
10
输入 #2
5 1 1 0 1 1
输出 #2
1
输入 #3
3 1 3 1
输出 #3
4
输入 #4
1 12
输出 #4
0
In the first example if we add to the first citizen $4$ burles, to the second $3$ , to the third $2$ and to the fourth $1$ , then the welfare of all citizens will equal $4$ .
In the second example it is enough to give one burle to the third citizen.
In the third example it is necessary to give two burles to the first and the third citizens to make the welfare of citizens equal $3$ .
In the fourth example it is possible to give nothing to everyone because all citizens have $12$ burles.
In the second example it is enough to give one burle to the third citizen.
In the third example it is necessary to give two burles to the first and the third citizens to make the welfare of citizens equal $3$ .
In the fourth example it is possible to give nothing to everyone because all citizens have $12$ burles.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted