LaplaceS_Demon's blog

By LaplaceS_Demon, history, 2 years ago, In English

I was going through the hacks list of Codeforces Round #760 (Div. 3) during the end of the 12 hours Hacking phase. Interestingly, I noticed that a lot of hacks for Problem-D were successful. After going through many of the submissions which were hacked, I noticed a flaw in the logic with which they approached this problem. I will try to describe the mistake and try to give a proper logic for this problem.

Let me first describe the fault in those hacked submissions:-

*Sort the array/vector

*Run a loop for k times and divide elements from the beginning of the array by the elements from the end of the array. Similarly move on to second element from beginning and divide by second last element from the end. Do this for k elements and store their sum in a variable say s1.

*Again run another loop for k times. Now, in this loop we start by taking elements from the (n-2*k+1)th term and divide it by the last element of the array(which has already been sorted). Similarly divide (n-2*k+2)th term by 2nd last term from the end and so on. Essentially we take one pointer at n-2*k+1 and the other at n and then move towards each other. Store their sums in a variable say s2.

*Now take the minimum of s1 and s2 and add it to the sum of undivided elements(if any) and print the answer.

The error in this logic can be understood by a simple test case:

1

6 3

5 5 4 4 2 1

here both s1 and s2 will be equal to 1. s1=s2= (1/5)+(2/5)+(4/4) = 0+0+1 = 1

However, the most minimum possible answer here can be 0. Let's take a look at the correct logic:

*Sort the array/vector.

*Divide the (n-k)th element by last element of the array. Then divide the (n-k-1)th element by the (n-1)th element and so on. Repeat this division process for k times and store the sum in a variable say s. Now add the remaining undivided elements (if any) to s and output the answer.

using this logic for the above mentioned test case, we get: s=(4/5)+(2/5)+(1/4) = 0+0+0 = 0.

Here, the main point to be understood is that if we choose the smallest possible element and divide it by the largest possible element in each turn, we may encounter situations in which we have to divide two equal elements which by the correct logic can be avoided. Our aim is to choose as many optimal pairs for division (of a smaller element by strictly bigger value) as possible.

https://codeforces.com/contest/1618/submission/139267064 : Link to the Submission

Full text and comments »

  • Vote: I like it
  • -17
  • Vote: I do not like it