Undeniably the best teaching methodology and the content for strengthening DSA
@adithyabhat4770 Жыл бұрын
Your videos and the SDE sheet are helping me so much to brush up the DSA concepts and learn the ones I ignored in college. A BIG THANK YOU!!
@dishant930 Жыл бұрын
I think after seeing the video if you read the striver sheet explanation for the same question it will give you more insight since it is really well written. I really liked it!
@siddharth.chandani Жыл бұрын
Can you provide me link of that..
@nanireddy36069 ай бұрын
It is in the description
@sahiltambe90852 ай бұрын
Your explanation goes straight inn , such a brilliant teacher!!
@KUMARASHISHRANJAN Жыл бұрын
The above code gave me `TLE` so, with few minor changes it will work for you. To optimize the given code, you can make a few changes to improve its efficiency: 1. Pass the `adj` vector as a reference to the `dfs` function: Currently, the `adj` vector is passed by value, which creates a copy of the vector in each recursive call. Instead, pass it by reference to avoid unnecessary copies. 2. Use a vector of vectors (`adjT`) instead of an array of vectors for the transpose graph: Declaring `vector adjT[V]` as a variable-length array may cause a stack overflow for large values of `V`. Instead, use a vector of vectors to represent the transpose graph (`adjT`). 3. Reserve memory for the transpose graph vectors: Before pushing elements into `adjT`, reserve memory for each vector based on the size of the corresponding adjacency list in the original graph. This avoids frequent reallocations and improves performance. 4. Use vectors instead of stacks: Instead of using a stack to store the finish times of the nodes in the first DFS, you can use a vector and append nodes at the end. This eliminates the need for reversing the stack later on. Here's the optimized code with these changes: Code : class Solution { private: void dfs(int node, vector& adj, vector& vis, vector& finishOrder) { vis[node] = 1; for (int it : adj[node]) { if (!vis[it]) { dfs(it, adj, vis, finishOrder); } } finishOrder.push_back(node); } void dfs2(int node, vector& adj, vector& vis) { vis[node] = 1; for (int it : adj[node]) { if (!vis[it]) { dfs2(it, adj, vis); } } } public: // Function to find the number of strongly connected components in the graph. int kosaraju(int V, vector& adj) { vector vis(V, 0); vector finishOrder; for (int i = 0; i < V; i++) { if (!vis[i]) { dfs(i, adj, vis, finishOrder); } } // Creating the transpose graph (adjT) vector adjT(V); for (int i = 0; i < V; i++) { vis[i] = 0; for (int it : adj[i]) { adjT[it].push_back(i); } } // Last DFS using the finish order int scc = 0; for (int i = V - 1; i >= 0; i--) { int node = finishOrder[i]; if (!vis[node]) { scc++; dfs2(node, adjT, vis); } } return scc; } }; These optimizations should improve the efficiency of the code.
@HanumaVamsi2001 Жыл бұрын
Thanks a lot man!!
@muditkhanna8164 Жыл бұрын
yeah that improves the code a lot!
@khubanzehra76327 ай бұрын
Thank you so much
@kushagrasrivastava14432 жыл бұрын
I thought I was done with graphs 😅
@SomeshCodes9 ай бұрын
Literally me too...😅
@bharat_alok112 ай бұрын
@@SomeshCodes me too
@chandrachurmukherjeejucse5816 Жыл бұрын
And here comes the real OG Striver.❤
@neelulalchandani74293 ай бұрын
Brilliant explanation! Thanks for the graph series, the best teacher ever!
@adebisisheriff15910 ай бұрын
Honestly, this playlist deserves Millions views and comments..... Thanks for all you do Striver!!!
@cinime2 жыл бұрын
Understood! Super excellent explanation as always, thank you very much!!
@rishabhjain62726 ай бұрын
the first step is same as topo sort using dfs technique, will not work with bfs (khann's algo) due to directed cyclic graphs.but if you apply topo sort using dfs in directed cyclic graphs ,it will work.
@eswartharun33942 жыл бұрын
This is much intutive than the previous video on kosaraju(other graph playlist)
@takeUforward2 жыл бұрын
Yes I read the comments, and then made this one.
@dhirendrasingh6071 Жыл бұрын
@@takeUforward you have changed the lives of so many students, you have blessings of many. ♥️
@tanmaypal2003 Жыл бұрын
@@takeUforward when we sort all the edges according to finishing time and store it in stack like this 0,1,2,3,4,5,6,7 , so instead of storing in stack can we use queue and then when we pop out elements from queue we start DFS from 7 instead of 0 and 7 is not connected to anyone so we found 1st SCC then we pop 6 and do DFS and found 2nd SCC then we pop 3 and do DFS and got 3rd SCC and so on. In this approach we don't need to reverse the graph. Can we do like this?
@vishalsinghrajpurohit6037 Жыл бұрын
@@tanmaypal2003 Nice observation. I think this should work fine.
@theSoberSobber Жыл бұрын
@@tanmaypal2003 yes
@ShreyaLanka-19124 ай бұрын
Understood!! Thank you for this amazing explanation.
@KaushalDhruw Жыл бұрын
Finally understood kosaraju algo. Thank you striver.
@Emperor7236 ай бұрын
mazaaaaaaa aaaaaaaagyaaaaaaaaaaa this is first time i have come across any of your videos der aaye par durust aaye.... let me subscribe!
@muskanchaurasia1532 Жыл бұрын
Just amazing. Great Explanation.
@vaibhavgupta7429Ай бұрын
thanks for the clear explanation of this complicated topic
@vaishalidev66212 ай бұрын
you are really good man!!! appreciate ur clarity of thoughts and words!! kudos and best wishes!!🎉
@mraryanrajawat96932 жыл бұрын
class Solution { private: void dfs(int node,vectoradj[],vector&vis,stack&st) // dfs for adj { vis[node]=1; for(auto it:adj[node]) { if(vis[it]==0) { dfs(it,adj,vis,st); } } st.push(node); } void dfs2(int node,vectoradjT[],vector&vis) // dfs for adjT { vis[node]=1; for(auto it:adjT[node]) { if(vis[it]==0) { dfs2(it,adjT,vis); } } } public: //Function to find number of strongly connected components in the graph. int kosaraju(int V, vector adj[]) { vectorvis(V,0); stackst; vector adjT[V]; // adj list after reversing edges for(int i=0;i
@augustinradjou39099 ай бұрын
Going to end the graph..❤ understood
@andreasleonidou3620 Жыл бұрын
Excellent tutorial and really helpful, thanks!!
@stith_pragya11 ай бұрын
Thank You So Much for this wonderful video..............🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻
@nizh327824 күн бұрын
My Last graph question for this series 😊
@Mr_Cat_112 жыл бұрын
Long time no see sir 😊 Thank you for posting 🥰🔥💖
@ManishKumar-zm9rj Жыл бұрын
We can use the same dfs again by passing a dummy stack: public void dfs(ArrayList adj, int[] vis, Stack st, int node){ vis[node] = 1; for(int it : adj.get(node)){ if(vis[it] == 0){ dfs(adj, vis, st, it); } } st.push(node); } //Function to find number of strongly connected components in the graph. public int kosaraju(int V, ArrayList adj) { int[] vis = new int[V]; Stack st = new Stack(); for(int i = 0; i < V; i++){ if(vis[i] == 0){ dfs(adj, vis, st, i); } } ArrayList adjT = new ArrayList(); for(int i = 0; i < V; i++) adjT.add(new ArrayList()); for(int i = 0; i < V; i++){ vis[i] = 0; for(int it : adj.get(i)){ // previously: i -> it // Now make it: i i adjT.get(it).add(i); } } int scc = 0; while(!st.isEmpty()){ int node = st.pop(); if(vis[node] == 0){ scc++; dfs(adjT, vis, new Stack(), node); } } return scc; }
@sahilbheke4083 Жыл бұрын
You are a very good teacher apse sikhna easy lagta hai
@rahulsangvikar79737 ай бұрын
Just realised one thing. You can avoid reversing the graph if you were to put the time in a queue instead of a stack.
@reee8966 ай бұрын
No you need stack cause if you use Queue it will keep going on to next SSC using the visited araay
@KeigoEdits3 ай бұрын
exactly my thought
@rohinianekar61 Жыл бұрын
understood, nice explanation
@iamnoob75932 ай бұрын
Man Striver ur incredible
@abcsumits Жыл бұрын
sorting according to finish time can be done using toposort:)
@deviprasad_bal Жыл бұрын
that is toposort only. Toposort can be done using stack and that's what it is here.
@DheerajDivaker Жыл бұрын
@abcsumit Toposort banega hi nahi, wo sirf DAG mein work karta hai.
@DheerajDivaker Жыл бұрын
@@deviprasad_bal Toposort banega hi nahi, wo sirf DAG mein work karta hai.
@Anonymous_Coder Жыл бұрын
@@DheerajDivaker Yes you are right but here since graph can be cyclic as well as acyclic , so incase of CYCLIC one edge which is causing cycle is not stored , like 1->2->3->1 , is only stored as [ 1, 2 ,3 ] . So ultimately we should not call it as a toposort ,but implementation is exactly same.
@DheerajDivaker Жыл бұрын
@@Anonymous_Coder yes absolutely correct.
@kritikarawat2180 Жыл бұрын
Man, amazing explaination. Hats off to you buddy
@Parthj4264 ай бұрын
Understood after a little bit of effort.
@UECAshutoshKumar11 ай бұрын
Thank you sir 🙏
@sathvikmalgikar28429 ай бұрын
guys just in case any one wondering why that stack of dfs calls was required that is only if u r solving for the second case of actually printing the components and not just finding number of components. like based on the stack trace u can make a note of elements while popping and put them into groups and print
@vishalcheeti83744 ай бұрын
without using stack, how to do solve the first case of finding no. of compo? I mean to find no. of components also we need it in sorted way right?
@amansingh.h7162 ай бұрын
@@vishalcheeti8374 we already reversed the graph so it will count the component for every dfs call,but somehow without stack its not working
@AmanKumar-wd2mq Жыл бұрын
You explain so well ❤❤
@jaishriharivishnu5 ай бұрын
Note: we can't say this as a Topological sort(as topological sort using DFS will get you stuck in Loop i.e cycle), but its a bit different. Its topological Sort for the SCC.
@krishnavyaskondle5707 Жыл бұрын
Thanks for Explaining the logic
@wilhelmrudolphfittig35775 ай бұрын
maza aaala re ala striver aala
@veekykumar42112 жыл бұрын
great work sir i just watch ur few video and ur content is awesome
@divyareddy76222 жыл бұрын
thank you very muchhh! You've literally changed so many lives ✌️
@bhavikpunmiya9641 Жыл бұрын
Thanks for Explaining this concept :) really liked your explaination
@amitp277 Жыл бұрын
Awesome work 👏
@249abhi Жыл бұрын
awesome explanation!
@space_ace7710 Жыл бұрын
GFG compiler giving TLE, don't know why?? :(
@devanshubilthare5277 Жыл бұрын
Amazing content🔥
@anagharaveendra533 сағат бұрын
When we are finding out the time complexity of any algorithm, why isn't the lower bound also considered?? Ideally speaking for the method of dfs, the time complexity is theta(V + E). So the time complexity of SCC must also be theta(V + E).
@paruldamahe79699 ай бұрын
amazing content!
@sauravchandra10 Жыл бұрын
Understood, thanks!
@parshchoradia9909 Жыл бұрын
Understood Sir!
@UjjawalPathak-qy3uj5 ай бұрын
HEY STRIVER, We can also reduce the time and steps if first getting there there finishing time and store in a queue rather then stack so because of FIFO we know first element to finish so we don't need to reverse the graph either we can directly go through the finishing elements which are already reverse with respect to graph it will reduce steps and clean code too. correct me if I m wrong
@Nirvanaattainer5427 күн бұрын
yes you are wrong. on so many levels that it cant be fixed anymore.
@-VLaharika Жыл бұрын
Understood 👍
@vardhanbolla-kz7xe Жыл бұрын
This code is giving tle in gfg, the below code is same as what you thought class Solution { private: void dfs(int node, vector &vis,vector adj,stack &st) { vis[node]=1; for(auto it: adj[node]) { if(vis[it]==0) { dfs(it,vis,adj,st); } } st.push(node); } void dfs1(int node, vector &vis, vector adjT[]) { vis[node]=1; for(auto it: adjT[node]) { if(vis[it]==0) { dfs1(it,vis,adjT); } } } public: //Function to find number of strongly connected components in the graph. int kosaraju(int V, vector& adj) { //code here vector vis(V,0); stack st; for(int i=0;i
@Lullurluli11 ай бұрын
To resolve this issue, make sure that adjT is declared as a vector of vectors vectoradjT(V);
@h6_wingers Жыл бұрын
mast padha dia bahiya
@manasranjanmahapatra3729 Жыл бұрын
Understood.
@ayushman_sr11 ай бұрын
thought process is very tricky
@AryanMathur-gh6df Жыл бұрын
UNDERSTOOD
@hardikjain-brb11 ай бұрын
The problem with graphs: The algos are easy code is easy dry run is easy chill But almost everytime this ques isnt answered Why this algo works like the basis of working of algorithms> Moreover this all is so volatile I'll forget this like in what 3 days>?
@manojnavinjamuri5867 Жыл бұрын
understood
@ritulraj6119 Жыл бұрын
🔥🔥🔥🔥 Explanation
@ElderMoro2 жыл бұрын
Thanks buddy
@suryakiran2970 Жыл бұрын
Understood❤
@sukhpreetsingh5200 Жыл бұрын
Awesome thanks a lot
@visheshagrawal8676 Жыл бұрын
amazing content
@no---on9 ай бұрын
In given example if we just make a little change with 3->2 then after reversing the edge will be 2->3 so in step 3 dfs call 2 will also go to 3 . I feel like it should not go to 3
@abhishekchoudhary70308 ай бұрын
i have the same confusion that if we start with 7 in the start rather than 0 , we will get wrong connected components
@nitinkumar59745 ай бұрын
thanks for the video
@mr.dependable48852 жыл бұрын
Why is it important to reverse the edges, can't we just start the dfs in reverse order ? Like in the example start from 7 can any1 please explain
@arpitrajput6424 Жыл бұрын
we can't .try dryrun on 1st example , suppose u created vector which store the timing then timing will be {1 2 4 3 0} if you try dfs accoording to this you still cannot find scc.
@shivamsangwan7268 Жыл бұрын
Yes, you can do that. But, this video is about Kosaraju's algorithm, which is implemented this way.
@dumpster-jackson7 ай бұрын
Understood!!
@GANESHSINGH-uc1gk2 жыл бұрын
crystal clear
@divyatejaswinivengada6368 Жыл бұрын
Understooddd!!
@Kupo3.0 Жыл бұрын
Understood!
@mathematics7746 Жыл бұрын
awsm explanation thank u so much
@mriduljain6809 Жыл бұрын
Understood
@ms-ej4gd2 жыл бұрын
Big fan of your work striver
@nisanduathsara52428 ай бұрын
understooood
@ravipatel-xu5qi8 ай бұрын
Why sorting is needed. Can't be simply reverse the edges and then do dfs on all the nodes. We can get group of nodes which are there in cycle which is ultimately our strongly connected components.
@lavanya_m018 ай бұрын
By doing that you've completely ignored the "Finish time" concept. While doing the dfs in the transpose graph( with reverse edges) you should start with the component which does not have an edge going to the other scc.. that's why we use a stack and pop the top most element to perform dfs. If u want, I'll post my python code
@harshkumargupta8538Ай бұрын
Please perform a dry run for the first example. Swap nodes 0 and 7, and then complete the dry run.
@piyushacharya76962 жыл бұрын
reach++ Loved it
@abhinavbhardwaj3372 Жыл бұрын
understood sir
@muditkhanna8164 Жыл бұрын
please make videos on Eulerian paths also.
@adamyasharma_01359 ай бұрын
amazing..
@herculean6748 Жыл бұрын
Thanks🙌
@RISHABHKUMAR-w5z4 ай бұрын
If you don't understand in one go just watch the video in 1x you will get better understanding slowly
@dinoarmy24402 ай бұрын
A single dfs will work by using flag(fillStack) parameter....
@sharathkumar83382 жыл бұрын
Understood brother. Could you please upload videos on sliding window and 2 pointers?? I saw most amazon OA will be based on that only.
@saitejadamaraju54082 жыл бұрын
Already there in the channel bro
@Rajat_maurya2 жыл бұрын
why we need to sort, why can't we simply use ? for(int i=0;i
@jahanvichaudhary81 Жыл бұрын
same question
@rahulsangvikar79737 ай бұрын
Sorting makes you sure that you process those nodes first which lie at the end of a directed path. If you apply it randomly, you might start dfs from the start node or any node in the middle and will visit the nodes that are not a part of the SCC as well.
@amansingh.h7162 ай бұрын
@@rahulsangvikar7973 but we already reversed the nodes and its not connected anymore ,,,also we have visited array so we can ignore already processed node
@discuss17 ай бұрын
How do I pick the starting node for sorting. In the above example if we would have started sorting from Node 3, I would have never reached 0, 1, 2. So how to calculate this increasing time for all nodes efficiently.
@udaypratapsingh8923 Жыл бұрын
understood 🥶
@dhruvn6522 Жыл бұрын
Sir is sorting edges according to finishing time same as topological sort?
@discuss17 ай бұрын
Will topological sort work in cyclic graphs?
@subrahmanyammartha95312 ай бұрын
@striver... is there really a need to reverse the graph...or the edges... After finding the finishing times and storing them....we could start dfs with the ascending order of finishing time....that would give us the 7th node first...then 6th....then 3rd and then 2nd..... this would give us 4 SCC and also the SCC ....may be just in a different order but still SCC
@dhanashreegodase444511 ай бұрын
ultimate
@adityavaste8963 Жыл бұрын
Can we skip the step 1, and just reverse all the edges ? Because after reversing edges, components will be logically separated and we can run DFS on it separately, and can find the nodes in each component. Please can anyone guide me on this ?
@adityavaste8963 Жыл бұрын
Ohh, got it. It's for the efficiency
@Jinxed192 Жыл бұрын
for eg, in the same example as striver's, if you reverse the edge between 2 & 3, with your process, when the graph is reversed, the dfs(0) has 3 as well in it, this is the loop hole. Whereas, in the algo, when we do dfs first and calculate finishing times, we get 3 at the top of the stack, so now we can make different dfs calls for each scc. Hope you understand. Have a great day!
@adityavaste8963 Жыл бұрын
@@Jinxed192 Thanks for explaination. That means we must know from where to start, to void futher conflicts.
@VISHALMISHRA-ff2ih3 ай бұрын
@@Jinxed192 the edge is like 0->1, 1->2 , 2->0 , 2->3 then how you are saying reversing the edges between 2->3 will be inside the dis(0)..And what Aditya is commenting is totally fine.
@ronitkaushik46343 ай бұрын
whats the problem in doing only reversing thr edges and dfs. why store them in first?
@p38_amankuldeep752 жыл бұрын
understood💛💙💛
@durgeshjadhav014 ай бұрын
nice
@anishraj66 Жыл бұрын
bhaiya can,t we solve it by reversing the stack instead of reversing the graph
@visheshagrawal8676 Жыл бұрын
stack reversal will reverse the finish time but reversing the graph does not allow us to go from one scc to another scc
@KratosProton Жыл бұрын
great
@adityasaxena6971 Жыл бұрын
Understood Striver
@nikhil_squats3 ай бұрын
is first step similiar to topo sort?
@pavanrai6196 Жыл бұрын
Can't we use queue and then not reversing the edges and just count no of scc of back, but it's not working idk
@DheerajDivaker Жыл бұрын
edges ko reverse karne se SCCs separate ho rahe hai..