this blog will talk about the info needed to solve DP problems in general.
DP or dynamic programming is a method used to solve bigger problems be dividing them in some way
however while learning DP i recommend being similar with some data structures , sometimes we might just need a set or a map but at expert level i recommend being familiar with segment tree data structure.
this blog will be divided into phases where i explain some basic DP problems or explain some DP method in general.
each phase will contain codes and examples , you can ask more questions in comments.
Overview
1.Fibonacci
sorry for this i really know this is what people tend to explain when doing DP but hear me out
the standard Fibonacci function looked something like this
int f(int n){
if(n<1)return 0;
return f(n-1)+f(n-2);
}
thinking about the complexity of this code , it appears that if takes O(f(n)) time complexity.
you should know that f(40)=102334155 so we may not be able to compute f(50) or anything greater with this function!.
or.. can we do something to make this even faster?
note that computing f(i) will call f(i-1) and f(i-2) but then calling f(i-1) will also call f(i-2) , so here is the catch , lets change our function so that whenever we are computing f(n) for a second time we return the previously computed answer, something like so
int mem[N],vis[N];
int f(int n){
if(n<1)return 0;
if(n==1)return 1;
if(vis[n])return mem[n];
vis[n]=1;
return mem[n]=f(n-1)+f(n-2);
}
what is the complexity now? , turns out it is O(N) as we may compute each item at most once and the rest will be returned in O(1).
this is the trick behind (some) DP methods , but knowing this method we will jump into some actual problems that use it.
no comment needed , you may just observe how similar this is to Fibonacci (or you might just jump to solve it directly).
your task is now to try and solve Frog 2.
2. more conditions
previously we only needed to handle one state where as in most cases we may need more , it is really funny how some people solve DP problems with 7 states and you see their code like how are you even understanding this!.
lets go even deeper , two states it is , and the problem Vacation might be a best choice for this.
3.Knapsack
this problem was really pain to understand at first , and it is not really present in the contest as long as i can see, we will now talk about Knapsack 1.
in this problem we have to compute dp(W) as the maximum profit from a capacity of W, now we need to know how to compute it using previous states , when we use an item we add ts value and subtract its weight like so
dp(W)=max(dp(W-w[i])+v[i])
but this way we may use an item more than once (the problem).
and so we may need to add extra state to know which items were used
our state will be dp[W][1<<100] (just kidding this is impossible ).
i will leave you to think on how to solve this.
try to solve Knapsack 2 !
4.Tracing
Ok! now we are able to find the minimum,maximum whatsoever but how do we actually know how we reached the answer? like in Knapsack how do we know what items we choose?
till now we used only two arrays mem(the answer),vis(did we calculate it before?)
now we will use another array to know from which state we got our best answer after calculating the answer we use this array to trace it.
we will present this in a simple problem like this problem this problem was solved once and i saw 2 or maybe more standard problems like it,
the state was like dp[index in S][index in T]
but knowing the transition might be hard so i will leave you to think!
this way we made sure we tried all cases
we tried matching the current positions and incrementing each index by one,and so (somehow!) we can say we tried every case and got the best answer in the end!.
the code for the answer would be something like this
Break
here we are actually done with standard DP
from now on we will tend to explain somethings in short and less explained way
you now are able to solve these:



