Closest Pair of Points (Divide and Conquer) Explained

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

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

  • @softsun2134
    @softsun2134 3 года назад +40

    probably the clearest explanation I've seen of this algorithm thanks!

  • @andy0401ify
    @andy0401ify 2 года назад +15

    OMG there hasn't been any explanation better than yours ever!!!! couldn't be any clearer!!!!! Thank you so much!!!

  • @pm_ranj
    @pm_ranj 3 года назад +4

    That was the nicest video of this algorithm on YT so far, keep it up

  • @berouminum3424
    @berouminum3424 3 года назад +33

    Truly an on "point" explanation. Thank you, keep going!

  • @Chellali.A
    @Chellali.A Год назад +5

    Thank you so much ,
    I wanted to bring to your attention a concern I have regarding the time complexity of the closestPair function in this algorithm.
    Specifically, when calling the function for all elements of Y in the following lines:
    dl = closestPair(X[1 .. mid], Y);
    dr = closestPair(X[mid+1 ... n], Y);
    I believe this approach increases the time complexity. The search for the strip is performed in Y, which has a length of N. Consequently, the work done by subproblems becomes O(N), where N is the number of all the points of the problem. This happens because Y is not getting smaller through the dividing process.
    I propose a modification where the work by subproblems is O(L), where L is the length of the subproblem. To achieve this, the Y in the call to closestPair(X, Y) should contain the same elements as X, with X being the array that undergoes division.
    Thank you for considering this suggestion.

  • @soumitramondal4013
    @soumitramondal4013 3 года назад +22

    The way you explained is really awesome. Can we expect more videos like this?

  • @SewonKimMusic
    @SewonKimMusic 3 месяца назад +1

    this is amazing. Thank you so much for saving our souls in algorithm class.

  • @sahilverma286
    @sahilverma286 3 года назад +29

    You have explained the topic very effectively and you made everything easy. Before I had plenty of doubts but now you made it clear. Keep on posting such videos. I'll be eagerly waiting for your next videos ^_^

    • @ANGEL_GFREENS
      @ANGEL_GFREENS 2 года назад

      What are best average and worst time complexity of this algorithm called closest pair by divide and conquer

  • @finiteimpulse3765
    @finiteimpulse3765 3 года назад +3

    Clear and precise explanation with a lovely voice.

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

    5:57 Why for j=1 to 7? what's the 7 about?

  • @balakr231
    @balakr231 8 месяцев назад

    The only tutorial on the channel had to be the on the topic i was looking for.

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

    Thank you after 3 years

  • @gezhi9420
    @gezhi9420 3 года назад +3

    讲得太好了,非常清晰。Visualization is awesome.

  • @aishwaryaramesh4877
    @aishwaryaramesh4877 3 года назад +3

    Wow, amazing video! You explained it so well that I finally understood it after breaking my head for sooo many days. Thanks a ton! 🙏🙏

  • @rafsanishazidnasif5291
    @rafsanishazidnasif5291 24 дня назад

    Thank you so much. Couldn't be more clear

  • @FAUSTINEWANG-k7v
    @FAUSTINEWANG-k7v Месяц назад

    This is such a great explanation! Thank you so much.

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

    we definitely need more of these explanations from you

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

    Incredible explanation, the best I have found, thank you very much!!!!!!!!!!!!!!!!!!!!!!!!!

  • @AntonKimS
    @AntonKimS 3 года назад

    Fantastic video! Best explanation I have seen so far. Would be awesome to see more videos on other algorithms. Thank you!

  • @kirby0918
    @kirby0918 3 года назад +4

    Great explanation, thank you! But I think the time complexity of pseudo code provided isn't obviously O(n log n) due to the step of selecting S from whole Y. Since you pass the whole Y in each call, the "n" isn't split into halves when recursion, but n -> 2n -> 4n -> ... where n is the length of X. I think it could be done in O(n) by merging the Y-sorted sub-arrays from divided problems.

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

      yes, this is correct. The recursive calls must be made with 2 modified Ys. One for the left points and one for the right. Or, as you suggest, by merging the points. To merge them, you would need to return not only d, but also the points merged by y coordinate

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

    An excellent explanation of the problem

  • @taivinh1986
    @taivinh1986 3 года назад

    the best explanations I've ever seen

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

    3:35 2-delta distance
    4:08 2d*d O(1) for each point

  • @xiaochenliang
    @xiaochenliang 22 дня назад

    your video is very very great! I love it. Thank you very much!

  • @albertswiecicki395
    @albertswiecicki395 2 года назад

    Quality content, I was looking for. Thank you!

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

    For split pairs why we iterating 1 to 7?

  • @JR-vc4gm
    @JR-vc4gm 2 года назад +1

    Wow great video! I had a hard time to understand why there was a maximum number of point in the delta region. Thank you

  • @VultureGamerPL
    @VultureGamerPL 3 года назад

    Simple and to the point. Nicely done.

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

    amazing amazing amazing and the best explanation for this problem. Thank you

  • @lujainabdulrahman9572
    @lujainabdulrahman9572 2 года назад

    Thank you so much, best explanation I’ve come across!

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

    i have a question. does the question assume there are coincident points? if coincident points arent allowed, then when checking in the 2d * d rectangle, can we just check for the next 5 points instead of 7? since coincident points will not happen. thanks.

  • @Pure_117
    @Pure_117 3 месяца назад +1

    4:40 bookmark

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

    so great , that was i am loving version.

  • @itsmayankkr
    @itsmayankkr 3 года назад +11

    Thank you so much for such a nice explanation :))

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

    very very nice explanantion....

  • @seharpanesar5132
    @seharpanesar5132 3 года назад +1

    This is so good. Thank you!!

  • @la337erf
    @la337erf 2 года назад +1

    This is amazing. Please make more videos on other algorithms!!

  • @juswanth.t133
    @juswanth.t133 2 месяца назад

    Great one, especially the 2δ X δ part!!

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

    hello, i wish you could do more explanation videos like this. I really appreciate your clear explanation!!!

  • @peterthegreat8464
    @peterthegreat8464 2 года назад

    Beautiful algorithm explained by a beautiful voice

  • @DanielLochner
    @DanielLochner 3 года назад

    Fantastic presentation! Thanks a bunch! :)

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

    Ommggg amazing explaination

  • @VikashKumar-tr9cq
    @VikashKumar-tr9cq 2 года назад +1

    Code in c++ :
    #include
    #include
    using namespace std;
    bool compare(paira , pairb)
    {
    return a.second=e)return LONG_MAX;
    if(e-s+1==2)
    {
    long d = dis(x[e],x[s] ) ;
    return d ;
    }

    int mid = (s+e)/2 ;

    long l = fun(x, s, mid) ;
    long r = fun(x,mid+1 , e ) ;
    long d = min(l,r) ;
    vector arr ;
    for(int i =s ; i= x[mid].first-d and x[i].first n;

    pair* arr = new pair[n];
    for(int i = 0; i < n; ++i)
    {
    cin >> arr[i].first >> arr[i].second;
    }
    cout

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

    wow this was amazing. thank you so much for this!!

  • @terensahin
    @terensahin 19 дней назад

    that was a great explanation, thank you

  • @bayanassali2339
    @bayanassali2339 2 года назад

    Very visual and clear explanation thank you so much!

  • @gsmdfaheem
    @gsmdfaheem 2 года назад

    This was perfect.....Thank you so much!

  • @danieloladele1433
    @danieloladele1433 3 года назад

    Excellent work and very easy to understand

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

    God Bless you, you are great

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

    Thank you! Great explanation!

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

    That was awesome
    Keep it going🎉🎉

  • @leilu5607
    @leilu5607 3 года назад

    This is an amazing explanation! 讲得好棒!

  • @Corgamos
    @Corgamos 3 года назад +1

    Thank you, very nicely explained!

  • @kenz7788
    @kenz7788 3 года назад

    the best explanation ever

  • @Japo0po0
    @Japo0po0 8 месяцев назад

    Best explanation, bar none

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

    Great explanation mam.

  • @samoyed_fps
    @samoyed_fps 3 года назад

    It's really a clear explaination, amazing !

  • @l501l501l
    @l501l501l 2 года назад

    Pretty clear. Thank you.

  • @Zinab8850
    @Zinab8850 2 года назад

    Amazing explanation 🤩🤩 the animation was extremely helpful in seeing how the algorithm works

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

    I think it's enough to iterate j from 1 to 4 because in each side the maximum number of points is 4

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

    how did she arrived at the 2nd strip

  • @potzko2552
    @potzko2552 2 года назад

    this is such a good and clear explanation, do you mind if I use it for teaching?

  • @soyei
    @soyei 8 месяцев назад

    great explanation, thank you

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

    Thank you so much ❤❤

  • @shubhbhalla3850
    @shubhbhalla3850 2 года назад

    Great explanation !

  • @AkashKumar-jl3sw
    @AkashKumar-jl3sw 3 года назад

    Amazing thank you for your explanation !!!!

  • @manrajsingh4644
    @manrajsingh4644 3 года назад

    Cleanest explanation ❤️

  • @LalithaManasviniS.P
    @LalithaManasviniS.P 4 месяца назад

    Thank You ma'am.

  • @squidsword0
    @squidsword0 2 года назад

    amazing work. helped me a lot

  • @AgeOfNerds
    @AgeOfNerds 3 года назад

    thank you! Very well explained!

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

    how did you find delta in 6,8 do you brute force the left and the right with out divide it ?

  • @鐘振元-i8o
    @鐘振元-i8o Год назад

    講的很好!😊

  • @Gintoki.Sakata918
    @Gintoki.Sakata918 2 года назад

    Please make more videos🥲
    If possible please create a whole series of your lectures.

  • @filz4461
    @filz4461 3 года назад

    Can you do more videos, please?

  • @Zaznobable
    @Zaznobable 2 года назад

    thanks a lot for your explanation

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

    Thank you! :D

  • @alanye7542
    @alanye7542 2 года назад

    Thank you!

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

    Should the space complexity not be O(n)?
    Explaination below. It's true that for each call with make take O(n) space which is the n for that call. And the depth is log n.
    However, in each next call N is also half.
    So it's like N + N/2 + N/4 .... 1, which is 2n, so O(n)
    When we are in a recusrive call, we shouldn't consider space from calls that have finished.
    And for a given call only it's previous sizes are active.
    It's similar to how in merge sort (with using extra auxilary array to merge), the space complexity would still be O(n).

  • @advaitanand2524
    @advaitanand2524 3 года назад +2

    Can we expect some more videos?

  • @alihsanelmas
    @alihsanelmas 3 года назад

    Well explained!

  • @KaranDoshicool
    @KaranDoshicool 3 года назад

    best explanation

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

    3:55
    7 points explanation

  • @hashirkz
    @hashirkz 2 года назад

    tysm it makes so much more sense now lol

  • @Adityarm.08
    @Adityarm.08 2 года назад

    8:00 Y sorted points also need to be halved before recursion to ensure optimal complexity, right? This can be done via (id) based filtering of Y into Y_left & Y_right based on a HashSet representation of what goes into X_left & X_right.
    Am I missing something? Great explanation otherwise :)

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

    thank you

  • @rezachitsaz4923
    @rezachitsaz4923 3 года назад

    thanks. useful.

  • @MahdeeMushfiqueKamal
    @MahdeeMushfiqueKamal 3 года назад +6

    Peeps who are here for BUET-18's offline-8 comment here

  • @MMM-hn8os
    @MMM-hn8os 13 дней назад

    wonder how this video ' made

  • @vatg2001
    @vatg2001 2 года назад

    Thanks

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

    الله يدخلش الجنة يارب

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

    感恩

  • @darshanbhaiya8711
    @darshanbhaiya8711 8 месяцев назад

    Great Explanation but i have not understood clearly

  • @udaykiran1390
    @udaykiran1390 3 года назад +1

    First of all i was on a thought she will definitely waste my time but u nailed it 🔥

  • @wizrom3046
    @wizrom3046 2 года назад

    Who told you the brute force solution was n squared?
    Once a test has been performed, it can be tagged as done. Then that pair test does not need to be done again.
    Consider 4 points; 1,2 3,4
    1 needs to test 2,3,4
    2 only needs to test 3,4 (because 1,2 test is already done))
    3 only needs to test 4
    That is only 6 tests need to be performed, not 16 (n squared)
    Formula is probably factorial n...
    Please get gour facts right!

    • @iDeer70
      @iDeer70  2 года назад +1

      Consider 5 points, 100 points, 10000 points, and let me know if you still think the formula is factorial n (hint: sum of arithmetic sequence).
      Then please get your fact right about Big O Notation! Keep in mind that constants are dropped when calculating time complexity.

    • @marceloenciso6665
      @marceloenciso6665 2 года назад

      In that case the running time would be something like n(n-1) + (n-1)(n-2) + ... + (n-k+1)(n-k) = (n^2-n) + (n^2-3n+2) + (n^2+(1-2k)n+(k^2-k)) = kn^2 + a. Where a is the sum of other lower power terms. Since big O notation drops those lower terms and constants we get that big o notation is n^2.

    • @wizrom3046
      @wizrom3046 2 года назад

      @@marceloenciso6665 agreed, sorry its not factorial, the formula for total number of tests is;
      (n squared -n) /2
      So the total number of tests will always be less than HALF of n squared
      Anyway this divide and conquer method it still a poor way of solving the problem.
      Doing all those square roots is a real mess. This is how I would do it for least amount of CPU cycles;
      1. Brute force all points but only testing points AFTER the point. (N squared -n) /2 tests;
      1a. Get the x dist and y dist (very fast, just 2 subtractions needed)
      1b. keep the larger of the two, very fast (we will call this the simple distance)
      1c. Put the simple distance in a list, ordered by size (very fast)
      TRICK; The actual distance can never be more than the simple distance *1.41 so only need to test those list entries that are LESS then the smallest entry *1.41
      Now we are only needeing to do the mults and sq roots on a tiny percentage of the point pairs;
      2. Process down the ranked list;
      2a. Do the pythag mult mult sq root etc to get real dist
      2b. If less than prev best, save that as best
      2c. If the list entry is >top entry *1.41 then job is done!
      Ive been coding high perf algorithms for 30 years and mostly had to do it on low perf 8bit systems with no math processor etc. The algorithm I outlined above is just my first attempt but would be far quicker than the divide and conquer system provided that n is not excessively large.

    • @wizrom3046
      @wizrom3046 2 года назад

      Ok, i just wrote some quick c code to test my algorithm.
      n = 100 points, randomly distributed x and y values using; random(1024)
      Brute force ranked point distances by my "simple distance" ie the largest of x1-x2 or y1-y2 (4950 tests)
      Then ONLY needed to do the pythag mult sqroot etc on ANY points where; simple dist

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

      @@wizrom3046
      You should really learn about big O notation before saying anything.
      (n squared - n) / 2 -> (n^2) /2 - n/2 -> n^2*1/2 - n*1/2
      When we calculate big O notation, we only care about the *dominant terms* and we do not care about the coefficients. Thus we take the n squared as our final big O (in this case n^2 is the dominant term and you can eliminate all the other parts in the big O notation).

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

    W vid

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

    now find the optimal solution for N-dimensional Euclidean space.

  • @ZihanLiu-vq2lt
    @ZihanLiu-vq2lt 6 месяцев назад

    牛逼 上课没听懂在你这里听懂了