Need help understanding a greedy solution
Difference between en1 and en2, changed 431 character(s)
I was solving this question: http://codeforces.com/contest/479/problem/B↵

The output specification states that:↵
"Note that in the process of performing operations the heights of some towers can become equal to zero."↵

Consider the second test case:↵

3 4 ↵

2 2 4↵

We can arrive at a better solution than the one given by doing the following operations:↵

1 2↵

1 2↵

Now the towers are: 4 4 with instability 0 (as tower 1 no longer exists). But the answer states minimum as 1.↵

Can somebody please help me understand what I am misunderstanding here?


**EDIT:** So I understood that I should not have assumed that a tower with no blocks will not exist. I am now interested in this variant:↵

Suppose a tower with no blocks ceases to exist. How would one solve this problem now? I tried but could not come on with a working solution. Example: There are 3 towers initially: 2 5 7. Suppose we can only move two blocks. Then we can achieve zero instability. Any help is appreciated.

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en2 English aj116 2017-04-20 21:47:44 431 Tiny change: ' here?\n\nEDIT: So I unde' -> ' here?\n\n**EDIT:** So I unde'
en1 English aj116 2017-04-20 18:19:21 605 Initial revision (published)