CANDY - Candy I


Jennifer is a teacher in the first year of a primary school. She has gone for a trip with her class today. She has taken a packet of candies for each child. Unfortunately, the sizes of the packets are not the same.

Jennifer is afraid that each child will want to have the biggest packet of candies and this will lead to quarrels or even fights among children. She wants to avoid this. Therefore, she has decided to open all the packets, count the candies in each packet and move some candies from bigger packets to smaller ones so that each packet will contain the same number of candies. The question is how many candies she has to move.

Input specification

The input file consists of several blocks of data. Each block starts with the number of candy packets N (1<= N <=10000) followed by N integers (each less than 1000) in separate lines, giving the number of candies in each packet. After the last block of data there is the number -1.

Output specification

The output file should contain one line with the smallest number of moves for each block of data. One move consists of taking one candy from a packet and putting it into another one. If it is not possible to have the same number of candies in each packet, output the number -1.

Example

Input file:
5
1
1
1
1
6
2
3
4
-1

Output file:
4
-1

hide comments
sushanth_r: 2017-01-11 12:05:21

AC in one go :)

dhruv19: 2016-12-19 17:41:29

wrong answer example test case passed and test case mentioned above passed

fazlamashrur: 2016-11-08 04:59:54

check this test case:
input:
2
8
4

output:
2

adi_pra: 2016-10-10 19:43:37

easy question but good approach.

abhimanyu1996: 2016-10-05 13:34:49

AC in one go. CHU Ques. FUDDU FUDAN UNIVERSITY.

hsuyaihtar: 2016-09-03 10:02:11

For all out there who are trying in java, use array size as 10001 and not 10000, to get ac. I got 10 WA because of that.

himanshu_1992: 2016-08-13 09:22:03

@mohan_agr:
Try removing break from the following condition:
if(sum%n!=0)
{
cout<<"-1"<<"\n";
//break;
}
It will work.

nitish_garg503: 2016-08-06 20:49:43

segmentation fault

alphastar: 2016-07-15 12:09:47

Well use break before printing things (Stupid Mistake by me)

Last edit: 2016-07-15 12:31:31
vaibhavahuja: 2016-07-13 04:47:01

TLE :'(


Added by:Fudan University Problem Setters
Date:2007-12-01
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: C99 ERL JS-RHINO
Resource:IPSC 1999