Building Recursion Mindset | Day 1 Part 1 | Dynamic Programming workshop | Vivek Gupta

  Рет қаралды 29,049

Vivek Gupta

Vivek Gupta

Күн бұрын

Пікірлер: 43
@amansabale4025
@amansabale4025 2 жыл бұрын
Today I saw the difference between a DSA teacher and a CP teacher, loved your concept/format to understand recursion.
@lakshyamittal3098
@lakshyamittal3098 2 жыл бұрын
Truee, the depth of understanding is just on a different level.
@amansabale4025
@amansabale4025 2 жыл бұрын
@@lakshyamittal3098 true that, even though I have done recursion and dp, this format never occurred to me, I think it comes with the grind.
@gautham7244
@gautham7244 2 жыл бұрын
No one taught the concept of level, choice,check and move in the entire KZbin directly....Loved the video....Thanks a lot mate ❤️
@abhinavkumar5298
@abhinavkumar5298 Жыл бұрын
Day1 Let's Go!
@gauravupreti4398
@gauravupreti4398 2 жыл бұрын
Awesome explanation 🔥🔥
@techDude1401
@techDude1401 2 жыл бұрын
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.
@hisokamorow6781
@hisokamorow6781 2 жыл бұрын
👍👍👍👍👍👍just awesome...👍👍👍
@homosapien14733
@homosapien14733 2 жыл бұрын
best Video 🔥 , thank you
@Sandeep-zd6dq
@Sandeep-zd6dq 2 жыл бұрын
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.
@shashwatmishra4342
@shashwatmishra4342 2 жыл бұрын
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])
@rachakondaeshwar4129
@rachakondaeshwar4129 6 ай бұрын
Very interesting
@codingwithanonymous890
@codingwithanonymous890 2 жыл бұрын
best explanationv
@shreyajha2066
@shreyajha2066 4 ай бұрын
Done
@sseu123
@sseu123 4 ай бұрын
Day 01 start
@Dr.dhumketuIITDholakpur
@Dr.dhumketuIITDholakpur 7 ай бұрын
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 ?
@abhishek04204
@abhishek04204 2 жыл бұрын
can you link some good problem of recursion ? Thank you
@bruteforce2434
@bruteforce2434 2 жыл бұрын
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.
@vivekgupta3484
@vivekgupta3484 2 жыл бұрын
Yes... for now let's assume its DP (as we are DP workshop)... next we will learn that too.
@simranvedpathak7112
@simranvedpathak7112 2 жыл бұрын
Thankyou !
@theuntoldtree
@theuntoldtree 2 жыл бұрын
Bhaiya bs ab ek aisa graph ka bhi le aao
@CpWithSunil
@CpWithSunil 2 жыл бұрын
Sir, Why I'm getting tle on correct code on your platform?
@Code_With_Goat
@Code_With_Goat Жыл бұрын
Practice link not working please help
@nikhilkumarv2577
@nikhilkumarv2577 2 жыл бұрын
🛐
@redcoder9428
@redcoder9428 2 жыл бұрын
day 2 ka vidoe nahi ane wala?
@Abhishek-fo3fc
@Abhishek-fo3fc 2 жыл бұрын
DAY 1 PART 1 DONE
@AmanChauhan-hr1wh
@AmanChauhan-hr1wh 2 жыл бұрын
anyone took notes...can you pls share??
@rohandsouza9147
@rohandsouza9147 2 жыл бұрын
Acraider orz
@justlc7
@justlc7 6 ай бұрын
Is this the same content as in your course?
@vivekgupta3484
@vivekgupta3484 6 ай бұрын
This is sort of 1 week of 4 week content on DP.
@justlc7
@justlc7 6 ай бұрын
@@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
@vivekgupta3484
@vivekgupta3484 6 ай бұрын
@@justlc7 No, the course is in C++ mostly.
@yagniktalaviya2146
@yagniktalaviya2146 2 жыл бұрын
Problem link is 404....Thanks for the video
@vivekgupta3484
@vivekgupta3484 2 жыл бұрын
Make sure that you have registered first.
@yagniktalaviya2146
@yagniktalaviya2146 2 жыл бұрын
@@vivekgupta3484 Registration (bitly) link is also not working
@vivekgupta3484
@vivekgupta3484 2 жыл бұрын
@@yagniktalaviya2146 use algozenith.com/dpworkshop
@duck3072
@duck3072 2 жыл бұрын
Linked list after dp please 🙏
@funnyvalentine123
@funnyvalentine123 2 жыл бұрын
Last one is 0/1 knapsack
@vivekgupta3484
@vivekgupta3484 2 жыл бұрын
Yes... with some twist :D
@rachakondaeshwar4129
@rachakondaeshwar4129 6 ай бұрын
@@vivekgupta3484 recently taught again iicpc a similar version
@vivekgupta3484
@vivekgupta3484 6 ай бұрын
@@rachakondaeshwar4129 Yes. the same only.
@tusharsolanki8564
@tusharsolanki8564 2 жыл бұрын
Recursion ka logic hee nhi banta yr
@vivekgupta3484
@vivekgupta3484 2 жыл бұрын
Thoda practice mangta hai ye topic!
GIANT Gummy Worm #shorts
0:42
Mr DegrEE
Рет қаралды 152 МЛН
요즘유행 찍는법
0:34
오마이비키 OMV
Рет қаралды 12 МЛН
5 Simple Steps for Solving Dynamic Programming Problems
21:27
Reducible
Рет қаралды 1,1 МЛН
Introduction To Dynamic Programming
1:05:12
Coder Army
Рет қаралды 15 М.
Recursion Tutorial - Basics to Advanced | Part 1
46:22
Apna College
Рет қаралды 56 М.