Hi. i am a beginner in CP. i know only python. is there a way of solving 1994C - Hungry Games, without using dynamic programming? i tried to make subsegments and iterating through each one but i am getting TLE at test cases 5.
my submission:271274872
please suggest if there is any alternate approach this other than using dp.
Thanks
Check the following accepted Python code based on the dynamic programming algorithm described in the editorial.
Thank you!
With pleasure. Check the slight update to the accepted Python code in the previous reply.