Блог пользователя anmolsainiii23

Автор anmolsainiii23, история, 13 месяцев назад, По-английски

Hi I was wondering why can't we use recursive Solution for Coin Piles Solution. This is the Problem

I have tried recursive solution but end up getting TLE and Runtime Error. Can anyone explain whether we can use Recursion or Dynamic Programing. This is my Solution.

This is my Soluion

  • Проголосовать: нравится
  • +3
  • Проголосовать: не нравится

»
13 месяцев назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

See the constraint on a, b (1e9). It seems yours code taking O(ab) time and memory