What is Memoization of given recursive solution of spoj problem DCEPC501 — Save Thy Toys

Revision en2, by VIKRAM91, 2018-05-13 11:30:28

I am doing this problem on Spoj and I have written the recursive solution. Which according to me is right. This solution is giving me TLE, so I change to memoization solution. This memoization solution is giving me WA.

Is my memoization of recursive solution wrong? If yes then why and if no then why is it not giving AC.

Is there any better way to do memoization?

Thank you.

Edit:-

I found my mistake. I was not initializing x,y,z. So they are taking garbage values for some testcases. Just initialize them with 0 and it's AC.

AC Solution

Tags #dp, memoization, #recursion, solution spoj

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en2 English VIKRAM91 2018-05-13 11:30:28 203 Tiny change: ' it's AC. [AC Soluti' -> ' it's AC. \n\n[AC Soluti'
en1 English VIKRAM91 2018-05-13 02:17:17 572 Initial revision (published)