#abc156c. C - Rally
C - Rally
Score : points
问题描述
在数轴上居住着 个人。
第 个人位于坐标 处。
你将组织一场所有 人都必须参加的会议。
会议可以在任意 整数坐标 上举行。如果你选择在坐标 处召开会议,那么第 个人将会花费 点体力来参加会议。
找出这 个人所需的最小总体力消耗点数。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
There are people living on a number line.
The -th person lives at coordinate .
You are going to hold a meeting that all people have to attend.
The meeting can be held at any integer coordinate. If you choose to hold the meeting at coordinate , the -th person will spend points of stamina to attend the meeting.
Find the minimum total points of stamina the people have to spend.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the minimum total stamina the people have to spend.
Sample Input 1
2
1 4
Sample Output 1
5
Assume the meeting is held at coordinate . In this case, the first person will spend points of stamina, and the second person will spend points of stamina, for a total of points of stamina. This is the minimum total stamina that the people have to spend.
Note that you can hold the meeting only at an integer coordinate.
Sample Input 2
7
14 14 2 13 56 2 37
Sample Output 2
2354
update @ 2024/3/10 17:15:48
相关
在下列比赛中: