作业帮 > 英语 > 作业

acm 一道水题:Increase and Decrease 求思路

来源:学生作业帮 编辑:百度作业网作业帮 分类:英语作业 时间:2024/06/13 11:13:28
acm 一道水题:Increase and Decrease 求思路
Description
Polycarpus has an array, consisting of n integers a1, a2, ..., an. Polycarpus likes it when numbers in an array match. That's why he wants the array to have as many equal numbers as possible. For that Polycarpus performs the following operation multiple times:
he chooses two elements of the array ai, aj (i ≠ j); he simultaneously increases number ai by 1 and decreases number aj by 1, that is, executes ai = ai + 1 and aj = aj - 1. 
 
The given operation changes exactly two distinct array elements. Polycarpus can apply the described operation an infinite number of times. 
Now he wants to know what maximum number of equal array elements he can get if he performs an arbitrary number of such operation. Help Polycarpus.
Input
The first line contains integer n (1 ≤ n ≤ 105) — the array size. The second line contains space-separated integers a1, a2, ..., an (|ai| ≤ 104) — the original array.
Output
Print a single integer — the maximum number of equal array elements he can get if he performs an arbitrary number of the given operation.
Sample Input
Input2
2 1
Output1
Input3
1 4 1
Output3
acm 一道水题:Increase and Decrease 求思路
先用HASH记录每个数字的出现个数,然后找出出现最多的那个数字ai,数目为MAX1,算出剩下的数字个数N,若是奇数,则ANS=MAX1+N-1,若是偶数,则判断平均数与那个数字ai的大小,若相等则ANS=MAX1+N,否则ANS=MAX1+N-1