Please read the new rule regarding the restriction on the use of AI tools. ×

Riyad_Hossain's blog

By Riyad_Hossain, history, 5 hours ago, In English

I'm trying the problem: 1923D - Slimes

Problem Summary: an element a -> a can take the adjacent element b if b is strictly less than a. After taking b, a is increased by b and b is removed. For an element, what is the min number of operations need among all other elements to take the element?

Approach: Prefix Sum + Binary Search

Calculate prefix and binary search on the right side to find the closest index where the sum is greater than the curr element. Then reverse the array and do it again (to search on the left side). Note: there must at least two unique element which is handled by map.

Submission: 284865983

What's wrong in my code?

Can anyone please help me to debug?

  • Vote: I like it
  • 0
  • Vote: I do not like it

»
5 hours ago, # |
  Vote: I like it -6 Vote: I do not like it

skill issues

»
119 minutes ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it
How to find the wrong test case?

Your code mishandles the case where duplicates gather in the middle of the array. In the wrong case you encounter:

4
1 2 2 2

Your code thinks the 3th slime can eat 2th slime and then eat 4th slime, which is impossible.