VERY HARD Mock Coding Interview with STRIVER, YouTuber, Googler

Поделиться
HTML-код
  • Опубликовано: 26 авг 2024

Комментарии • 397

  • @takeUforward
    @takeUforward Год назад +1441

    Initially I thought it was easy, until I figured out the edge case. Probably could have been a cleaner implementation if the camera pressure was not there :P. But this is what time constraint does to you. It was an amazing experience :)

    • @SubhranilPaul-gi2jx
      @SubhranilPaul-gi2jx Год назад +58

      Bhaiya ❤you are my saviour ❤your sheet and videos helped alot to gain knowledge ❤

    • @KeertiPurswani
      @KeertiPurswani  Год назад +270

      The interview plus camera pressure is next-level! Being able to do this much proves that you truly are an expert in DSA (specially Graphs!)

    • @navaratnaagarwal1962
      @navaratnaagarwal1962 Год назад +12

      What would the solution be if we change the question to - Find the number of edges to be removed such that the sum of weights of removed edges is minimum?

    • @navaratnaagarwal1962
      @navaratnaagarwal1962 Год назад +1

      Thank You

    • @krishnachaitanya9333
      @krishnachaitanya9333 Год назад +3

      Nice explanation and I thoroughly enjoyed the problem solving part, one edge case I could think this is missing is the component can have both cyclic part and non cyclic part, so greedily first we have to remove non cyclic edges within a component and then start removing cyclic edges and so on. What do you say?

  • @sandeepanmazumdar8486
    @sandeepanmazumdar8486 Год назад +386

    I am so satisfied to see Raj writing code. I wonder, how much effort it would take to reach a place where he is. It's so inspiring to see him :)

    • @sangamo38
      @sangamo38 10 месяцев назад +6

      We don't write code like that in a real job though. There we have a lot more interfacing and abstractions.

  • @pn5563
    @pn5563 11 месяцев назад +77

    I found Keerti also confused 🤔 in middle of this video when striver explain Keerti expression like what he doing 😅 anyone thinking same like....

  • @ksankethkumar7223
    @ksankethkumar7223 Год назад +342

    I don't know how or why I always fall for striver's way of solving problems, but he is a legendd!!! Thank you keerthi

    • @prem3717
      @prem3717 Год назад +4

      +1

    • @yamangoyal7629
      @yamangoyal7629 Год назад +1

      william lin sitting in corner :- hold my beer!

    • @hehehe4206
      @hehehe4206 10 месяцев назад

      @@yamangoyal7629 tourist sitting in corner :- hold my codeforces and codechef rank

    • @iamnoob7593
      @iamnoob7593 7 месяцев назад

      @@yamangoyal7629 Tourist to william lin : Do u know who i am?

    • @bingchilling_chinchangchung
      @bingchilling_chinchangchung 6 месяцев назад

      @@yamangoyal7629 let him sit corner . Itna kuch khass nhi he

  • @sicklips
    @sicklips Год назад +70

    He may not be able to come up with the 100% accepted solution which is probably hard for a problem like this in an interview or in front of a camera but what he said at the end is 100% correct. Interviews are just not about if you were able to solve a probem but how you approach a problem.

  • @takeUforward
    @takeUforward Год назад +186

    The given solution misses one edge case, imagine a component with 1 - 2 - 3- 4 - 5 - 3 , in this component we have a cycle, but still if we remove just the 1-2 edge, it will split them into two components. The correct solution seems to be the one where we end up removing the nodes with the smallest degrees, and then keep doing till we get the answer. This might also have some edge cases, need to grill on it. Minimum degree edges which are not a part of cylce, is what we have to grill on, does not seems that easy..

    • @vaibhavdawra8960
      @vaibhavdawra8960 Год назад +7

      Even this does not work,
      Consider follwing case
      n=9 m=12 k=4,
      1-2
      2-3
      3-4
      4-1
      5-6
      5-7
      6-7
      6-8
      6-9
      7-8
      7-9
      8-9
      Now, smallest degree is 2 for nodes 1,2,3,4,5 . Now if you select 5 first, then required edges to be removed is 4 but if you select apart from 5, required edges will be 3. So it depends on which node with minimum degree you select

    • @takeUforward
      @takeUforward Год назад +17

      @@vaibhavdawra8960 Yes it has be a combination of smallest degree and not part of cycle, seems a complicated one.. Tougher than it appears..

    • @mathguy198
      @mathguy198 Год назад +2

      Exactly thought the same, you need something like topological sorting and also keep track of which compos contain cycle, and calculate accordingly, I guess this solution would be a bit more trickier than the one you wrote😜

    • @criticcell
      @criticcell Год назад +2

      I believe this question has to do something with bridges.

    • @pankajkataria8956
      @pankajkataria8956 Год назад +2

      @takeUforward I think solution would be to find the bridges, each bridge would give you 1 more component(as it's an undirected graph it would be connected), If we fall short, we need to maintain indexed min heap of vertex's as all the components would be cycles and remove vertexes with minimum degrees, update the remaining degrees of adjacent vertexes and repeat till we reach #of Vertexes. (Max number of components in a given graph).

  • @swastikchatterjee5838
    @swastikchatterjee5838 Год назад +27

    What about this solution.... ​ You count the indegree of all nodes. Subtract the 'k' from total components. That becomes your target. Now keep on visiting those nodes which has minimum indegree greedily. Disconnect them and add their indegree to the answer. Visit the immediate neighbors and decrease their indegree by 1. Seems to work on all test cases I came across.

    • @kaushalagrawal6258
      @kaushalagrawal6258 4 месяца назад +2

      You are on the right path, just keep improving on this. It's a good start and a lot better than the attempt made by striver in the video

    • @abhinavkumariitism
      @abhinavkumariitism Месяц назад +3

      n=8, m=9, k=2
      1 2
      2 3
      3 4
      4 1
      3 5
      5 6
      6 7
      7 8
      8 5
      Try on this test case.., you answer would be *2* (minimum indegree is 2 here), but u can just remove the 3-5 edge to make 2 companents. So, actual ans is *1*

  • @mahimusic9732
    @mahimusic9732 Год назад +53

    @9:39 5-6 6-7 7-8 won't break the component , they are part of the cycle too as 8-5 is. Just find all the cycles in the graph and keep the list of edge not in any cycle. After that you can also find the edges with which you can have your prob solved in minimum cost not just minimum number.

    • @surajmamgai102
      @surajmamgai102 Год назад +1

      Yes you are correct. That's what I replied. Each edge is dependent whether the other edge has been already removed or not. Even removing 6-7 will not break the component.

    • @maheshvommi1092
      @maheshvommi1092 Год назад

      ​@@surajmamgai102anybody please tell me which programming language striver bhai uses to solve the problem in this video..I'm completely new so ...c,c++ or java

    • @surajmamgai102
      @surajmamgai102 Год назад

      @@maheshvommi1092 It's C++ bro. If you are new then you might find syntax different here bcz of the use of STL's and bits/stdc++.h library.

    • @piyushsingh486
      @piyushsingh486 Год назад

      its c++@@maheshvommi1092

    • @shobhitmaste
      @shobhitmaste Месяц назад

      @@maheshvommi1092 c++

  • @enter.netinfinity6136
    @enter.netinfinity6136 Год назад +5

    my approach:
    1). count no. of components - x
    if x>=k return -1
    2). so, we need to make the k-x components
    3). calc the degree of all the node and put it into treemap, tm
    4). take a variable ans =0 for min #edges need to remove
    5). iterate over treemap until x

  • @varungurnani4989
    @varungurnani4989 Год назад +12

    We can utilize the property of bridges because as per definition "a bridge is an edge which on removal increases the number of connected components by one".
    The procedure I have thought of is,
    1. We have to make k connected components.
    2. Let the current number of connected components be 'curr_con', now 'k-curr_con' more components to make.
    3. Count the number of bridges available in the graph (using DFS), let it be 'b' and break the bridges, now ' k-curr_con-b' more components to make.
    4. Now again find the number of bridges, break them and keep on repeating this until we make it to k connected components.

    • @knowcode6374
      @knowcode6374 2 месяца назад

      It wont work

    • @varungurnani4989
      @varungurnani4989 2 месяца назад

      @@knowcode6374 Can you please explain why ?

    • @RohitRaj-wr4wp
      @RohitRaj-wr4wp Месяц назад +2

      It will fail where we have to remove the edge in the cycle to get the required k component.

    • @reamerx
      @reamerx Месяц назад

      @@varungurnani4989 kosa Raju algo we can use I think, no of strongly connected components

    • @tarunjain8795
      @tarunjain8795 2 дня назад

      ​@@varungurnani4989 It will fail when there is no bridge present at the moment, for eg, a square has no bridge, therefore it will lead to an infinite loop of checking same graph structure again and again.

  • @nikhilagarwal8914
    @nikhilagarwal8914 Год назад +24

    Lots of respect to Striver writing so much code to guide us through.
    However suppose the graph initially has only one component which is densely connected with a lot of edges and k=2 that is you have to remove some edges so that you get one more component. In this code first you would end up removing all the edges that are causing cycle in the graph and 1 more edge to make a new component. But it is possible it is not the minimum number of edges required to make 2 components but far more than the actual answer. Am I wrong somewhere?

  • @ravishasharma1219
    @ravishasharma1219 Год назад +14

    I kept trying to think and solve along. Now I am just glad I was able to follow along and understand 😝

  • @user-rn1yb5pq8k
    @user-rn1yb5pq8k 6 месяцев назад +2

    My approach
    1) create an adjacency matrix for all the nodes in the graph using DFS.
    2) while DFS, find the total number of islands/components present in the graph by having the visited vector (let us assume total components = x).
    3) (k-x) is the required number of extra components. and ans=0.
    4) start a loop for (k-x) times.
    4) parse the adjacency matrix and find the node that has the lowest degree (least number of adjacent nodes)
    5) Add the degree to the ans (this separates this node into a new component)
    6) also remove the current node from the adjacent nodes. (updating the adjacency matrix after removing nodes)
    7) return the final ans.

    • @chetankukreja8828
      @chetankukreja8828 Месяц назад

      @@user-rn1yb5pq8k that would be wrong as you are having a greedy approach.
      Which would not work for some edge cases.
      Like
      Imagine you have 2 big clusters of nodes and they are connected to eachother inside the cluster now also let both of them to be identical and now let a node be added to any one cluster so that it is connected to 3 nodes
      And now the time is to connect the 2 clusters select 2 nodes from both the clusters except the 3 one that we added.now make the graph a single component by connecting the 2 components that we had originally
      Now you have a graph
      So if k=2
      All you req is to sever that final edge that you had so your answer should be one
      But from your algo we should remove the 3 edge node
      If you are able to understand this case then good .other wise I may answer it in more detail

  • @dhameliyayagnik4236
    @dhameliyayagnik4236 Год назад +6

    Very good mock interview, Learned so many things.
    I have one doubt in your example only.
    1) 1 - 2 - 3 - 1
    2) 4 - 5 - 6
    3) 7 - 8 - 9 - 10 - 7 - 9
    k = 8 (You took 7 but I took 8 because i thing here is an edge case).
    From your code it will be 3 (already given) + 2 (more from 2nd compo) + 1 (cycle removing edge in 1st compo) + 2 (more from 1st original compo) + 2 (cycle removing edge from 3rd compo) + 1 (from 3rd compo)
    edges req = 3 + 2 + 1 + 3 + 2 + 3 = 11.
    components = 3 + 2(from 2nd) + 2(from 1st) + 1(from 3rd) = 8.
    From my code it will be 3 (already given) + 2 (more from 2nd compo) + 2 (cycle removing edges from 3rd compo) + 3 (more from 3rd compo)
    edges req = 3 + 2 + 2 + 3 = 10.
    components = 3 + 2 (from 2nd compo) + 3 (from 3rd compo) = 3 + 2 + 3 = 8.
    At the end , I got Answer with 1 less edge required.
    So, I think that last greedy approach won't work every time, We need to check that how many requirements of componenets, according to that we need to break cycles and get more components from that component.
    It means At Last, "The count of cycle breaking edges and getting components from it", this thing should be minimum instead of "only minising the cycle breaking edges".
    Please check once and correct me if i am wrong.
    Thanks for Fantastic mock interview.

  • @prnvsgr
    @prnvsgr Год назад +6

    Asking constraints for n to understand the time complexity and understand which algorithm can be fit there ...is something I loved most ....I never knew this trick can be useful in interview

    • @prnvsgr
      @prnvsgr Год назад +2

      Adding one more thing ....not giving up and trying to write code even if it is not correct.....In my last interview I had 3 coding questions (1 easy and 2 medium) ..I was able to solve starting two with multiple approach but in last one I was only able to give brute force and better approach and while trying to give optimal solution I gave up ...and guess what ....I gave almost every answer I still got rejected due to giving up attitude....( Lesson learnt but hurtfully)

  • @mdaasil2329
    @mdaasil2329 Год назад +59

    Learnt a lot of tackling from this video. Thanks Keerti and Striver!

  • @Iron_Man019
    @Iron_Man019 Год назад +9

    He is a great problem solver how logical thinking his brain has 🔥

  • @sayanraha77
    @sayanraha77 Год назад +17

    Love you Striver Bhaiya your the King of Coding😍

  • @PriyanshAgarwal
    @PriyanshAgarwal Год назад +46

    This was fun to watch xD.
    I think a more interesting problem would be to find out the minimum weight of the edges to be removed instead of the number of edges.
    Also, I think there might be a mathematical solution for the "number of edges" problem wherein we look at the number of edges in each component and make some greedy choices.

    • @KeertiPurswani
      @KeertiPurswani  Год назад +9

      Let’s do another mock interview where I ask you this level of question. What say ✌🏻

    • @PriyanshAgarwal
      @PriyanshAgarwal Год назад +11

      @@KeertiPurswani woohoo that would be awesome. I am down for it✌️

    • @KeertiPurswani
      @KeertiPurswani  Год назад +4

      Yaaaay! Karte baat

    • @funcart9418
      @funcart9418 Год назад +2

      ​@@PriyanshAgarwal mostly awaiting...

    • @GeneralistDev
      @GeneralistDev Год назад +2

      same thought about the problem statement

  • @user-ve4jm9pj3s
    @user-ve4jm9pj3s 2 месяца назад +1

    My Solution can be like finding all bridges in the graph using tarjan's algorithm for undirected graph along with that storing bi-connected components using stack . removing a brigde will surely give you a more connnected component. So Assuming initially there was a single connected component in the graph.If we got n bridges then we can get n+1 components . if n+1>k then we will delete only k-1 brigdes else if(n+1

  • @lakshsinghania
    @lakshsinghania Год назад +27

    Dayum! Just amazing
    Watching striver’s interview was totally worth it
    Thank u keerti and you have earned a new subscriber :)

    • @KeertiPurswani
      @KeertiPurswani  Год назад +3

      Thank you! And welcome to the channel! Hope you like rest of the content as well 😇😇

  • @kalashjain3769
    @kalashjain3769 Год назад +12

    we can also use Degree of a node in a graph property here .
    NOTE : Here the cost is the no of edges that should be removed to make a new component
    Approach :- we know that a node with a degree one can always give us a new component with a cost of 1 . A degree of node 2 give us new component with a cost of 2 and similarly for a component with a degree of n we get a new component with a cost of n .
    So basically we need to spot the nodes with a degree one in the current formed graph , another thing is that when we remove a node we have to decrease the degree of all the nodes which are directly connected to it by 1 .
    And then just iterate till the components are not equal to K along with adding the cost
    Pls comment if there are any edges cases / logic error in the approach

    • @arnavgoyal7952
      @arnavgoyal7952 Год назад +5

      Logic is wrong. If we consider this case when k = 2:
      2 4
      | \ / |
      3 --7-- 6 -- 1
      | / \ |
      5 8
      clearly, your logic would say the answer is 2, but the answer should be 1.

  • @arghyadeepmandal4458
    @arghyadeepmandal4458 Год назад +16

    For the correct solution I think initially we should try to remove the bridges as removing one gives one new component guaranteed.Then if we still need more components,we are then left with disconnected graphs in which each one of the nodes obvously belongs to a part of a bigger cycle and there maybe smaller cycles including some subset of nodes in that component also.No idea how to proceed from this...😅

    • @pulkitjain5159
      @pulkitjain5159 Год назад

      we could also remove articulation points also , ya but removing of a articulation point will take upto 2 edges at once.

    • @maheshvommi1092
      @maheshvommi1092 Год назад

      ​@@pulkitjain5159can you please tell , striver bhai solving qus in which programming language..I'm new so I want to know

    • @pulkitjain5159
      @pulkitjain5159 Год назад

      c++ @@maheshvommi1092

    • @AnonyManji
      @AnonyManji 7 месяцев назад

      This is the correct Approach

  • @dragonhot6951
    @dragonhot6951 Год назад +16

    what I have seen in almost other videos of keerti ,It was always like Keerti use to get Upperhand but here it was like Interviewer got nervosed by interviewee and Literally Striver Being Striver You knocked it Bro.Motivates me for Self-learning

  • @nishantkale8794
    @nishantkale8794 2 месяца назад +3

    Got a Solution -- using concept of degree and min heap Priority Queue
    note -- maximum disconnected components = n (number of nodes) as constraint is 1 n-1) ;
    4 - have a min priority queue storing ( {degree,node} ) ;
    5 - push all nodes with their respective degrees ;
    6 - pop() current node at each iteration do ct ++ ; ans +=degree[current] and for all neighbouring nodes degree - - ;
    push them and do this til ct == k
    7 - return ans ;

  • @RitikKumar-bk6pj
    @RitikKumar-bk6pj Год назад +13

    Thanks u striver Bhaiya and keerti didi for making this video this is very helpful and interesting video how to approach problem, represent to our ideas and thought process to interviewer. 😍😍

  • @mohdnasir557
    @mohdnasir557 Год назад +10

    Love u striver bhaiya. ❤ You are master in DSA. Currently I am watching your graph series. Awesome 👍

  • @kartik6968
    @kartik6968 7 месяцев назад +1

    This is the approach i could think of using UNION-FIND:Let me know if I am wrong ^^
    We need to find the minimum number of edges that can be removed to get exactly k-connected components.
    Consider it the reverse way: Find the max number of edges that can be joined to give you exactly k connected components.
    Inittially consider all the nodes as individual graphs(consider each node as the parent of itself). USE UNION -FIND to join two nodes and check the number of components thus remaining(check number of unique parent nodes- make a parent array corresponding to the ). Keep a count variable to store number of edges covered.
    There will be a point you reach where there will be exactly k unique parents. Keep going forward but this time only use an edge if on using it, two components of same parent are connected(because cycles won't increase the number of components). Only then increase count.
    Count will be your answer.

  • @arkodasgupta0412
    @arkodasgupta0412 Месяц назад +2

    Idk but while watching this, I felt that the interviewer is more confused than the interviewee

  • @avindersingh3390
    @avindersingh3390 11 месяцев назад +2

    I think Edmond Karp variation of Ford Fulkerson method to find the maximum flow between source and sink nodes which would be equal to min cut will work. We probably have to do it for all the possible pairs in the graph and then pick the one with minimum cut and then remove the edges from the graph. This will lead to 1 more disconnected component in the graph with removal of minimum cost of edges. Have to do this k - 1 times to have k components. Complexity goes somewhere around k * V2*(V*E2).

  • @kushagra4401
    @kushagra4401 Год назад +5

    I think i have a edge case on which this approach or code should not work,
    lets say n = 4,m =4,
    edges are - [ [ 1,2], [2,3] , [3,4], [4,2] ]
    i'll try to draw it-
    4
    / \
    1__2/___3
    and k = 2, which means 2 components and answer should be 1 for it as if you remove edge between 1 and 2 you have 2 components,
    but according to striver's approach this is cyclic component so first he will remove edges responsible for cycle that mean one edge than one more to edge removal for havig two components which means his code should give answer 2 while it should be 1.
    i have more example of this edge case but this is the simplest and should work to explain what i am saying.

    • @codingclub4225
      @codingclub4225 Год назад

      I think this code will work on given edge case . Please have a look :
      #include
      using namespace std;
      mapind;
      vectoradj(1001);
      mapvisited;
      int main()
      {
      int n,m,k;
      cin>>n>>m>>k;
      for(int i=0;i>u>>v;
      adj[u].push_back(v);
      adj[v].push_back(u);
      ind[u]++;
      ind[v]++;
      }

      priority_queuepq;
      for(int i=0;i

  • @ronitjorvekar944
    @ronitjorvekar944 Год назад +5

    How about creating minimum spanning trees (MST) from the current x components and then using k-x to find the answer? The edges which create components will be present in the MSTs.

    • @akashajith3120
      @akashajith3120 Год назад

      wouldn't that have an issue with cyclic graphs?

  • @yashshukla9529
    @yashshukla9529 Год назад +5

    I think, we can use union find . If both a and b belongs to same parent then breaking a----b edge won't give us new components. This way we can keep track probably.

    • @KeertiPurswani
      @KeertiPurswani  Год назад +3

      Hope you watched the whole video and noticed that he followed same approach!

    • @yashshukla9529
      @yashshukla9529 Год назад

      Yes I watched the video. Great efforts put in by both . Thanks for the video 👍

  • @itz_me_imraan02
    @itz_me_imraan02 Год назад +10

    It was great...want some more such interviews with Striver.❤

  • @yassineacherkouk
    @yassineacherkouk 9 месяцев назад +1

    I didn't finish the video yet but i think the algorithm is to find the connected components first, find the bridges with the low link value, and calculate the minimum edges that you need to move.
    And now i will finish the video and see if i 'm wrong hhhhh.

  • @shivamsundriyal5086
    @shivamsundriyal5086 Год назад +4

    Suppose we have 2 components:
    (i) 1-2
    (ii) 3-4-5-6-3 (cyclic)
    If k = 4 then the answer should be 3 but if we do k-x then we are getting 2

    • @takeUforward
      @takeUforward Год назад +2

      X is 1 one, as the cyclic ones will not be counted, watch the entire video, I have covered this edge case as well

    • @shivamsundriyal5086
      @shivamsundriyal5086 Год назад

      @@takeUforward yeah! Watched the complete video.
      Understood! 😊

  • @DC01
    @DC01 Год назад +4

    Nice solution, although I think there are few cases where this solution will not work, let’s say we have a fully connected component of 10 nodes and K=2, so the optimal answer would be 9, but with strivers solution we would get 37 ig.
    I think this is a NP Hard problem, as if we calculate the answer for K = 1 to N, then we can solve the clique problem using that information.
    Can you please share the resource of this problem and the solution given by the author if possible.

  • @colinmaharaj
    @colinmaharaj Год назад +4

    I am trying to rewrite a big number library I wrote many years ago. I am trying to move it from 32 bit native low-level C code to 64-bit native low level C code.
    I have used it to do prime number mathematics, RSA encryption, and Diffie Helman key exchange.
    I use it as a driver to explain how these technologies work.
    I just want to see if there will be any performance boost going native 64-bit. I will probably have to use some assembly language.

  • @antrapurohit8010
    @antrapurohit8010 Год назад +4

    Can someone please comment on below algorithm that I thought:
    1) find no. of connected components. Let it be x.
    2) find degrees of each vertices and store it in hashmap. also create a treemap.
    3) remove any smallest degree vertex from treemap (that is why I took treemap to easily remove vertex with smallest degree). Lets say vertex v has smallest degree d. add d to the ans because this are the edges we are gonna remove to separate vertex v from the connected component. after this update degree of removed vertex and its neighbour vertex in hashmap and treemap. So,
    ans += d
    x++
    4) repeat step 3) till x becomes K and ans is our answer.

    • @takeUforward
      @takeUforward Год назад +1

      How will you ensure that someone with the smallest degree is not form of a cylce, this is what I am thinking

    • @antrapurohit8010
      @antrapurohit8010 Год назад

      @@takeUforward I think,even if it has a cycle this algo should work.
      i.e. 1-2-3-1
      1 -> 2 degree
      2 -> 2 degree
      3 -> 2 degree
      So smallest degree is 2, we can remove any vertex if k=2 then ans will be 2. (Ans += 2)
      For k = 3, now that degree of vertex 2 and 3 is 1 if we remove vertex 1. Ans += 1. Which is 3 edges.

    • @vaibhavdawra8960
      @vaibhavdawra8960 Год назад

      i thought of exactly same solution, If you find any test on which it does not work , add it in ypur comment

    • @takeUforward
      @takeUforward Год назад +1

      @@antrapurohit8010 Seems to be correct. Remove the ones with smallest degrees, and remove the ones with degree 1, which will lead to one new component. But might fail in some cases where the minimum edges and part of the cyclic ones are same.

    • @antrapurohit8010
      @antrapurohit8010 Год назад

      @@takeUforward thank you for your reply!!

  • @umeryousuf131
    @umeryousuf131 Месяц назад +1

    take mock coding interview with love babbar

  • @arkachakraborty843
    @arkachakraborty843 Месяц назад

    I think there is an edge case in 7 - 8 - 9 - 10 - 7 - 9. We can remove 7-8 and then 8-9 then we have 1 more component = 8. So we don't really need to remove 2 edges to get one more component. Instead I would find the bridges. If a + bridges >= k thats a return. Else keep track of the sizes of cycles like in this case 3, 3. Then individually check for those cyclic components

  • @konnesrikanth1783
    @konnesrikanth1783 Год назад +2

    This example
    1-2-3-1
    4-5-6
    7-8-9-10-7-9
    What if k is 8?
    It is better to remove the edges from square(3) instead of triangle (1)
    Because 1st component and 2 nd component will endup giving only 7 but we need another to get that we have to remove 3 edges from square and totally it ends up removing 8
    But if we consider square rather than triangle it ends up only removing 7 edges
    I think we also should consider what is max number of components we can get by removing the edges from cycle instead only checking for minimum edges to remove
    Correct me if my solution is wrong 😅

  • @nishantshelar8887
    @nishantshelar8887 6 месяцев назад +4

    What is the edge weight for? 😅

  • @YashJaiswal-lr7vi
    @YashJaiswal-lr7vi 8 месяцев назад

    Please correct me if I am wrong. This is a greedy approach.
    We create a list.
    We store all the degree of node into it and list of node connected with that node.
    We declare an integer ans=0;
    Now for minimum removal of edge to get k component, we iterate through array and find minimum degree of node.
    while(k>0)
    {
    k--;
    ......................
    }
    And add that degree in ans.
    After finding, we have to update array because that node is disconnected.

  • @AsifShaikh-wt9yq
    @AsifShaikh-wt9yq Год назад +8

    Striver is on fire. Lately he is doing best collaborations.First kirti and now harkirat 🙌🙌

  • @sannareddymonesh7598
    @sannareddymonesh7598 Год назад +6

    we can find the degree of each node and remove the edges from nodes which have less degree using Heap

    • @takeUforward
      @takeUforward Год назад +1

      Does not works, minimum edges with redundancy will be an issue, unfortunately.

    • @mohd.farhansiddiqui1973
      @mohd.farhansiddiqui1973 Год назад

      I also think about it while seeing the vedio. Might be it works on directed graph.
      But what if we consider the edge as indegree of one node and outdegree of another connected node. And use heap and remove the nice having min sum of in degree and out degree , In case of undirected graph

    • @mohd.farhansiddiqui1973
      @mohd.farhansiddiqui1973 Год назад

      I write nice instead of node (type error)

  • @md.saifulislam6528
    @md.saifulislam6528 Год назад +4

    Everyone forgets, this line give me the hope😄

  • @vaibhavdawra8960
    @vaibhavdawra8960 Год назад +1

    One simpler solution that I feel would work is, maintain degree of each node, a new component is created only if we cut a node whose degree is 1, if a node has degree more than 1, say x than x+1 edges need to be cut , so this generates the greedy algo, maintain a multiset of (degree,node) and remove the node which has min degree and accordingly adjust the degree of its neighbours. If anybody feels it wont work, feel free to mention some test

    • @takeUforward
      @takeUforward Год назад

      Seems an easier one, good way to think of it in this way..Am still thinking if this will give me the minimum or not, because of the following thought process.
      We might end up reductantly removing too many edges unnecessarily just because of the cycling thing. Need to sit back and think of some cases, but seems a good way to approach.

    • @vaibhavdawra8960
      @vaibhavdawra8960 Год назад

      @@takeUforward One case where it fails, I just thought is what if more than one node has same minimum degree, which should i choose and came with a test and this algo fails.
      One way i thought it can be fixed is select that node whose component is lexicographically smallest when i arrange all nodes of a component in increasing order.
      What do you think?

    • @user-le6ts6ci7h
      @user-le6ts6ci7h Год назад

      @@vaibhavdawra8960 This is nice a thought , but this would fail in cases where you have multiple nodes with same degree , decision of choosing the node to disconnect would ultimately affect your answer. For example, current node with min degree that you decided to disconnect would be connected to some other nodes which are still in the cycle. While at the same time there may be node with same indegree that is connected to nodes which are not in cycle which you missed to choose at first

    • @vaibhavdawra8960
      @vaibhavdawra8960 Год назад

      @@user-le6ts6ci7h Yep, realised that and also proposed an alternative in this thread. What do you think about that?

  • @abhinjr4918
    @abhinjr4918 7 месяцев назад +2

    Next with Kunal Kushwah please

  • @mathematics6199
    @mathematics6199 Год назад +1

    Hey, can you also post the actual solution to this problem? I wonder how you even satisfied with his solution because in my opinion two things actually matter for any algorithmic interview:
    1. Correctness of the Algorithm
    2. Complexity Analysis.
    First of all, where is the correctness? I wonder, that you asked for an algorithm, and you didn't even ask whether it's correct or not? It will also be helpful for the viewers who watch this video if you include the above two points.

  • @satyajeetdas6577
    @satyajeetdas6577 Год назад +2

    for the loop checking and knowing whether the edge could give me separate component i was thinking of union-find algorithm.even we can check for component using union find algorithm.

  • @user-uh6cl6ps9f
    @user-uh6cl6ps9f Год назад +1

    I have question on this. if you think of the case of : 1->3->7>5->3->8->10 .In this case there is a cycle in that component but on removing edge just 1 edge 1->3 or 3->8 or 8->10 we successfully get an extra component without affecting the cycle? Sorry Incase I am wrong. bhaiya please answer this

  • @bhargavsai2449
    @bhargavsai2449 Год назад

    ,first we count number of connected components if connected components are greater than k,then print-1 else the solution always exist so,M-(n-k)+k will give minimum number of edges

  • @kartiksrivastava3897
    @kartiksrivastava3897 Год назад +10

    Not in this life i could ever come up with a counter question seconds after the interviewer gives me the problem.
    The way he asked what if number of components>k. That really got me and every single viewer of this video I'm sure😂🫶

  • @ShivangMewada-wn1tk
    @ShivangMewada-wn1tk 2 месяца назад

    1)We maintain a priority queue of vertex where the priority deciding factor is the total degree of that vertex
    2)Then we extract the min element (min degree) and separate that from the whole graph which would give me a new component
    3)Then after removing that element from graph, I will update the whole graph and my priority queue and keep on doing that until I get K separate components.
    Please reply whether this algo will work or not?

    • @rocketr.4931
      @rocketr.4931 2 месяца назад

      is it like kahn's algorithm

  • @karandhingra3042
    @karandhingra3042 Год назад

    Can we not use minimum spanning tree to solve this
    My idea is we find the number of components and if they are already greater than k, we print -1
    Else we want to start disconnecting our graph until we get a component count of k
    We can use DSU to make it happen
    In MST instead of choosing edges with least weight we choose all the edges max weight until we get component count =k and after that juncture, there are two options either we come across an edge that increases the components then we have to add it’s cost in answer and other edge connects nodes belonging to the same disjoint set.
    Some one Please let me know if that would work
    Thanks

  • @thiruvetti
    @thiruvetti 11 месяцев назад +2

    All such videos only expose my lack of knowledge in basics even though am an "experienced" developer. I know I can escape the field without this much core knowledge. But the con is I would never end up working in Google or Microsoft , which is fine I guess.
    But this was fun to see how experts think.

    • @GOJOANDSUKUNAFAN
      @GOJOANDSUKUNAFAN 5 месяцев назад

      Amazon and Google you can

    • @thiruvetti
      @thiruvetti 5 месяцев назад

      @@GOJOANDSUKUNAFAN No bro, am not worth that much. I realised in few years back 🙂

    • @lohithreddy5356
      @lohithreddy5356 2 месяца назад

      @@thiruvetti may be they aren't worth of you.

    • @thiruvetti
      @thiruvetti 2 месяца назад +1

      @@lohithreddy5356 Thaks for postive words but am poor in DSA skills.

    • @lohithreddy5356
      @lohithreddy5356 2 месяца назад

      @@thiruvetti It's not that you are poor in dsa it's that you are poor at giving time to dsa, take some/lot of time to grasp.

  • @shashijaiswal688
    @shashijaiswal688 2 месяца назад

    Inspirational and so motivational video. So much knowledgeable. Thank you.

  • @AkashKumar-ql6yo
    @AkashKumar-ql6yo Год назад +2

    I don't understood who's the interviewer... keerti or striver XD

  • @roshanraturi1040
    @roshanraturi1040 Год назад +11

    Striver bhiya is emotion❤ DSA main bhoot confident hogya hu Inki vajah se

  • @kailashchandrasharma4650
    @kailashchandrasharma4650 14 дней назад

    enough motivation to continue the graph series 😭😭

  • @rishabhsahlot7481
    @rishabhsahlot7481 Год назад +1

    Why not remove 2 edges from cycle to get 2 components, instead of removing component with 1 cycle

  • @ashu7pathak
    @ashu7pathak 8 месяцев назад +1

    That moment, when the interviewee outshines the inteviewer \m/,

  • @Ajeetkumar-uo4hf
    @Ajeetkumar-uo4hf Год назад +1

    Bhai kon kiska interview le rha hai

  • @user-sm1eh7yy3t
    @user-sm1eh7yy3t Год назад

    This solution would fail for this case
    N = 7 , M = 8, K=2
    Edges -> 1-2 , 2-3 , 3-4, 4-5, 5-6, 2-7, 3-7
    your algo would give 3 but the right answer is 2 (last 2 edges can be removed)

  • @rohan_devarc
    @rohan_devarc Год назад +1

    Tarajan's algorithm for articualtion point and bridges!

  • @echocoding4550
    @echocoding4550 9 месяцев назад +1

    Before this video I thought solution should be complete in less line of code and I practice since last 6-7 months. Now I can say for first solution lines of code is not important first fall get solution (brute force) and optimise it.
    Some how I also cramming the solution because I want to just complete the task but and I know this is not best way to practice but I did.
    Now striver again remembering me to think all possible ways as much as you can to solve a problem is real DSA 😊 thank a lot ❤

    • @aayushgupta700
      @aayushgupta700 7 месяцев назад

      Where did you learn dsa and which programming language

    • @echocoding4550
      @echocoding4550 7 месяцев назад

      @@aayushgupta700 thanks for the question. There are three persons out there
      1 code with Harry : best for cpp basics and oops concepts
      2 love babbar : 149 video of DSA , he almost cover most of the interview questions.
      3 striver : no doubt he should be at first place as I am think now ( after spending almost a year) but as beginner I even unable to understand what he is saying. His level is for experience person in my point of view. Now I watch striver because somehow I feel I am capable of understand his video lectures.
      But striver shorts videos are very useful for beginners => A pathway
      Every one is most respected person in my eyes. ☺️☺️

    • @aayushgupta700
      @aayushgupta700 7 месяцев назад

      @@echocoding4550 thankz sir for replying sir I am in new in coding just now I had completed my sem 1 exam in eng but in sem 2 there is language called c so should I start learning c and then c++and after do the dsa plzz reply 🙏

  • @muhammadzeeshan8638
    @muhammadzeeshan8638 Год назад +2

    Please take a mock interview of love babber ❤

  • @MukulXL
    @MukulXL 6 месяцев назад

    Testcase: a complete graph!
    Brute: Try out all possible combinations starting from k-conncted_components edge sets to greater no edge sets until k connected components.
    Better approach: find bridges, if no. of bridges less than equals k-connected_components then boom 💥. Other wise delete all bridges then keep deleting edges from cycles or combination of cycles greedily i.e. edges whose sum of degrees of vertices is minimal.
    Best approach: design an algo for quantum computer, ll solve in linear time probably 😉
    : 45min interviews p kaun aisa pucht h bhai

  • @samiranroyy1700
    @samiranroyy1700 2 месяца назад

    Striver sir ❤ you are legend....pata nehi apke jaise kabhi ban pauga or nehi...🙏🙏🙏

  • @jacquelynecarmen
    @jacquelynecarmen 6 месяцев назад +2

    I didn't understand the question 😂

  • @shashwatmishra4342
    @shashwatmishra4342 Год назад +1

    Here is an algorithm I came up with under the assumption that the graph is simple:
    Let us first decompose the graph into connected components, now we may observe that If a connected component with x nodes has more than x-1 edges , deleting a single edge will not lead to an increase in the number of components. In other words we can say that for each connected component to really contribute to our result i.e cause an increase in number of connected components it must be in the form of a tree.
    So This leads us to greedily do the following:
    For each connected component we first figure out the minimum number of edges to delete such that it forms a tree
    Then we just keep disconnecting edges from each of the components in order of the number of edges required to make the component in form of a tree until we make k components
    @takeUforward is this algorithm correct?

    • @karandhingra3042
      @karandhingra3042 Год назад +1

      I thought of the same solution
      I am very much convinced that greedy solution will work
      Any test case in mind it might fail on?

  • @liberated_geek4428
    @liberated_geek4428 Год назад

    Subscribed! thanks for bringing striver!

  • @xcoder420
    @xcoder420 Год назад +1

    Hi Keerti, can u give the link of the question please? I have a solution in mind. Just wanted to test it.

  • @abhishekpatra7954
    @abhishekpatra7954 Год назад

    how some people prepare their mind for such hard questions? ? I think the age old saying is true that Some are god-gifted.
    Because nobody can by himself be so keen on solving hard questions with a smile on his face

  • @crimsoncad3230
    @crimsoncad3230 Год назад +1

    Just curious to know this even though you've mentioned that this question won't be asked in an interview.
    We're you able to solve it or knew the solution just like interviewers know the solution of the DSA question they ask.

  • @believeinyourself811
    @believeinyourself811 29 дней назад

    46:45 to just revise whole code ❤

  • @eklavya_kumar
    @eklavya_kumar 9 месяцев назад

    This seems to be unsolvable problem for an interview. We can easily find the maximum number edges to be removed to get k connected components to find minimum probably we need min cut algorithm per component which will give us minimum number of edges to be cut to get two components and we can again run min cut algorithm on the child components produced. Time complexity will be much more, similar to Dinics algorithm each component.

  • @TheOne-qv3xw
    @TheOne-qv3xw Год назад +1

    03:08 all time i was thinking hey man first remove this space before word exactly k connected graph

  • @sohaibaftab446
    @sohaibaftab446 Год назад +1

    Feels like he started teaching her😂

  • @paragggoyal1552
    @paragggoyal1552 Год назад +1

    can i get the link to the solution i don't think the answer is correct and i don't seem to find the question on google.

  • @akshanshsharma6025
    @akshanshsharma6025 Год назад +1

    striver is a living legend i guess he solved problem during his sleeping time too 🤣🤣🤣🤣🤣🤣

  • @PulkitMalhotra
    @PulkitMalhotra 2 месяца назад

    I think this testcase missed
    1-2-3-1 => 3 nodes (1 edge removal will give acyclic)
    4-5-6-4 => 3 nodes (1 edge removal will give acyclic)
    11-12-13-14-15-16-17-18-19-20-11-13 => 10 nodes (2 edge removal will give acyclic)
    k=10
    already=3
    left=7
    Acc. to @striver (ans=0)
    - remove 1 edge component (ans=1, left = 7) then remove edge (ans=3, left=5)
    - remove 1 edge component (ans=4, left = 5) then remove edge (ans=6, left=3)
    - remove 2 edge component (ans=8, left = 3) then remove edge (ans=11, left=0)
    But if we remove 2 edge component (ans=0)
    - remove 2 edge component (ans=2, left = 7) then remove edge (ans=9, left=0)
    52:15 - I think here it's 1,7

    • @PulkitMalhotra
      @PulkitMalhotra 2 месяца назад

      One more test cases
      1-2-3-4-5-6-3 (here is cycle) but we don't need to first remove cycle thing. We can first cutout the nodes to make one more components

  • @killeraloo3247
    @killeraloo3247 Год назад +1

    Two of my favourite youtubers in one video.
    🧡

  • @NeymarJr-nu6uo
    @NeymarJr-nu6uo Год назад

    Stiver's initial case k-x fails when there is a circular graph we need to make a additional cut , Again commenting in the middle of the video since it says to think of a case.

  • @TIMETOTECH
    @TIMETOTECH Год назад

    What happen if removing 2 cyclic edges frees 5 edges which then don't contribute to the cycle then we can get 7 minimum
    But if we try to remove minimum contribution to cycle suppose
    1 edges and gets 2 free edge
    We have now 3
    Now again we again remove 1 and again got 2
    We get 6
    Again we remove 1 and get 1 tree edge
    We only get 5 components on removing 3 cyclic edges
    But same can be get by removing 2 extra edges and get 5 components so total is 7
    So I think this solution will fail
    Please kindly check

  • @mohammedkalasha9868
    @mohammedkalasha9868 Год назад +1

    mam how to avoid dark circles plz..

  • @Itsme1n1ly
    @Itsme1n1ly Год назад

    I will think about answering this question once I am done with my preparation. It's going to be my mock interview at that time

    • @Liku108
      @Liku108 7 месяцев назад

      Haha man ki batt chin Li.
      Kas esa hota.

  • @khansamar6889
    @khansamar6889 Год назад +1

    Striver is legend in coding community.

  • @ishaat_plays
    @ishaat_plays 6 месяцев назад

    He can decrypt imagination into code 👌

  • @varunmanjunath6204
    @varunmanjunath6204 9 месяцев назад +1

    Way harder than starting your own business is leetcode

  • @harshrajputmusic174
    @harshrajputmusic174 3 месяца назад

    ese questions to nahi aate na interview me??? 😥😥

  • @jatinpopli5617
    @jatinpopli5617 11 месяцев назад

    Hi , Please could you provide us some more difficult questions with solutions.

  • @akshatpandey007
    @akshatpandey007 7 месяцев назад

    I was thinking instead of breaking the edges, we keep track of components while creating the dsu. suppose we iterate over edges and my_components are greater than k, so we take it but if our components =k then we take only edges which doesn’t effect the count of components

  • @surajmamgai102
    @surajmamgai102 Год назад

    He is saying it wrong in 1st question. None of the edge on removal will give two different components. Even if you will remove 6-7, then also the component will be like. 7 - 8 - 5 - 6.

  • @anonymous.u.s.e.r
    @anonymous.u.s.e.r Год назад +1

    you both should get married eachother 🎉

  • @user-vs3jn4xi4x
    @user-vs3jn4xi4x 5 месяцев назад

    not able to see strivers screen completely! making it harder to follow along;

  • @brawlstar3731
    @brawlstar3731 Год назад

    I think for this question degree of vertex and alredy have components needed.
    Correct me if I am wrong

  • @hemanthaugust7217
    @hemanthaugust7217 4 месяца назад

    this is a really complicated problem. We didn't even take enough examples to develop intuition. Couldn't follow the solution at all.
    It's like 2 geniuses talking to each other.

    • @lOmaine777
      @lOmaine777 4 месяца назад

      Let's be honest, the interviewer didn't understand one bit of whatever he was saying.

  • @ilikememes9052
    @ilikememes9052 Год назад

    Yupp I also thought of Union find after the problem statement appears and mine solution is exactly as same as striver
    I need the problem link to solve this if you have it Keerti please share