Editorial for DMOPC '17 Contest 3 P1 - An Early Christmas Present
Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
For of points, it suffices to generate all subsets of size , and calculate their average in time.
Time Complexity:
For the remaining of points, we can either compute an average in time by subtracting the number we are considering from the total sum of all elements. Alternatively, we can make the observation that the number we wish to remove is the minimum. The proof is left to the reader as an exercise1.
1Who knows? Maybe your teacher will give you bonus points if you can present a fully rigorous proof.
Comments