![]() | ||||
Online Judge | Problem Set | Authors | Online Contests | User |
---|---|---|---|---|
Web Board Home Page F.A.Qs Announcement | Current Contest Past Contests Scheduled Contests Award Contest |
The Average
Description In
a speech contest, when a contestant finishes his speech, the judges
will then grade his performance. The staff remove the highest grade and
the lowest grade and compute the average of the rest as the
contestant¡¯s final grade. This is an easy problem because usually there
are only several judges. Let¡¯s consider a generalized form of the problem above. Given n positive integers, remove the greatest n1 ones and the least n2 ones, and compute the average of the rest. Input The input consists of several test cases. Each test case consists two lines. The first line contains three integers n1, n2 and n (1 ¡Ü n1, n2 ¡Ü 10, n1 + n2 < n ¡Ü 5,000,000) separate by a single space. The second line contains n positive integers ai (1 ¡Ü ai ¡Ü 108 for all i s.t. 1 ¡Ü i ¡Ü n) separated by a single space. The last test case is followed by three zeroes. Output For each test case, output the average rounded to six digits after decimal point in a separate line. Sample Input Sample Output Hint This problem has very large input data. scanf and printf are recommended for C++ I/O. The memory limit might not allow you to store everything in the memory. Source |
[Submit] [Go Back] [Status] [Discuss]
All Copyright Reserved 2003-2005 Ying Fuchen,Xu Pengcheng
Any problem, Please Contact Administrator