i have a serious problem that i can't solve DP problems that require bottom-up approach, I can solve native problems with this approach like coin change and knapsack ... etc, but in the real contest when I face a Dp problem that require this approach I can't solve it, and sometimes can't understand the editorial solution so any suggestions should I do to be able to solve this kind of problems? and sorry for my poor English









Almost every problem can be solved by bottom-up as well as top down approach both, specially at your level ( there are some high techniques that requires bottom up but currently focus on building your concept of dp strong), whenever you solve any question by top down try to relate the transitions with bottom up, For editorial just understand the transitions and try to implement it in top-down, if u stuck with implementation you can search from the accepted solutions.
this comment helped me a lot