the space needed is around 4 * 1e8 , so how to make this dp array ??
How to make an array of this much size
@aryan_007 You cannot make dp array of this much space it will result in a TLE . Try storing only those values which are needed .
A top down approach(using a map to store values ) instead of a bottom up can work.
Hope it helps .
If your doubt is now resolved please mark it as resolved and rate me accordingly .
Else you can further questions here .
Thankyou