Today I saw the difference between a DSA teacher and a CP teacher, loved your concept/format to understand recursion.
@lakshyamittal30982 жыл бұрын
Truee, the depth of understanding is just on a different level.
@amansabale40252 жыл бұрын
@@lakshyamittal3098 true that, even though I have done recursion and dp, this format never occurred to me, I think it comes with the grind.
@gautham72442 жыл бұрын
No one taught the concept of level, choice,check and move in the entire KZbin directly....Loved the video....Thanks a lot mate ❤️
@abhinavkumar5298 Жыл бұрын
Day1 Let's Go!
@gauravupreti43982 жыл бұрын
Awesome explanation 🔥🔥
@techDude14012 жыл бұрын
Loved the it!, more and more content like this. And also, please make video how , when and at level we can start giving contest and tips and tricks. It will be very helpful for us bhaiya.
@hisokamorow67812 жыл бұрын
👍👍👍👍👍👍just awesome...👍👍👍
@homosapien147332 жыл бұрын
best Video 🔥 , thank you
@Sandeep-zd6dq2 жыл бұрын
Who all thought of greedy solution in example 3 just after seeing the problem (sorting)😂 even we know that it won't work. but now i will always formulate problems in LCCM framework before proceeding to the solution.
@shashwatmishra43422 жыл бұрын
Hi, in the third example you discussed could we also model the dp states or levels as follows: dp[i][t][ct]=max skill you get from first i tasks given you have atmost t time and you have ct slots rather than modelling as a subset? I guess the transitions then can be: dp[i][t][ct]=max(dp[i-1][t][ct],dp[i-1][t-time[i]][ct-1]+skill[i])
@rachakondaeshwar41296 ай бұрын
Very interesting
@codingwithanonymous8902 жыл бұрын
best explanationv
@shreyajha20664 ай бұрын
Done
@sseu1234 ай бұрын
Day 01 start
@Dr.dhumketuIITDholakpur7 ай бұрын
having a doubt , like when the recursion will happen and the function will call itself then everytime the value of ans will be zero and that don't makes any sense to me so can please help me to fix that out ?
@abhishek042042 жыл бұрын
can you link some good problem of recursion ? Thank you
@bruteforce24342 жыл бұрын
Great video. How do you know whether a problem is greedy or dp? This is something i often struggle with. Could you take this up in detail in one of the sessions? It would really help.
@vivekgupta34842 жыл бұрын
Yes... for now let's assume its DP (as we are DP workshop)... next we will learn that too.
@simranvedpathak71122 жыл бұрын
Thankyou !
@theuntoldtree2 жыл бұрын
Bhaiya bs ab ek aisa graph ka bhi le aao
@CpWithSunil2 жыл бұрын
Sir, Why I'm getting tle on correct code on your platform?
@Code_With_Goat Жыл бұрын
Practice link not working please help
@nikhilkumarv25772 жыл бұрын
🛐
@redcoder94282 жыл бұрын
day 2 ka vidoe nahi ane wala?
@Abhishek-fo3fc2 жыл бұрын
DAY 1 PART 1 DONE
@AmanChauhan-hr1wh2 жыл бұрын
anyone took notes...can you pls share??
@rohandsouza91472 жыл бұрын
Acraider orz
@justlc76 ай бұрын
Is this the same content as in your course?
@vivekgupta34846 ай бұрын
This is sort of 1 week of 4 week content on DP.
@justlc76 ай бұрын
@@vivekgupta3484 got it, and I also wanted to check does the course have codes in python, as I want to do CP etc. in python only
@vivekgupta34846 ай бұрын
@@justlc7 No, the course is in C++ mostly.
@yagniktalaviya21462 жыл бұрын
Problem link is 404....Thanks for the video
@vivekgupta34842 жыл бұрын
Make sure that you have registered first.
@yagniktalaviya21462 жыл бұрын
@@vivekgupta3484 Registration (bitly) link is also not working
@vivekgupta34842 жыл бұрын
@@yagniktalaviya2146 use algozenith.com/dpworkshop
@duck30722 жыл бұрын
Linked list after dp please 🙏
@funnyvalentine1232 жыл бұрын
Last one is 0/1 knapsack
@vivekgupta34842 жыл бұрын
Yes... with some twist :D
@rachakondaeshwar41296 ай бұрын
@@vivekgupta3484 recently taught again iicpc a similar version