probably the clearest explanation I've seen of this algorithm thanks!
@andy0401ify2 жыл бұрын
OMG there hasn't been any explanation better than yours ever!!!! couldn't be any clearer!!!!! Thank you so much!!!
@Chellali.A Жыл бұрын
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.
@pm_ranj3 жыл бұрын
That was the nicest video of this algorithm on YT so far, keep it up
@berouminum34243 жыл бұрын
Truly an on "point" explanation. Thank you, keep going!
@SewonKimMusic3 ай бұрын
this is amazing. Thank you so much for saving our souls in algorithm class.
@sahilverma2863 жыл бұрын
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_GFREENS2 жыл бұрын
What are best average and worst time complexity of this algorithm called closest pair by divide and conquer
@balakr2318 ай бұрын
The only tutorial on the channel had to be the on the topic i was looking for.
@deadscammer3374Ай бұрын
Thank you after 3 years
@finiteimpulse37653 жыл бұрын
Clear and precise explanation with a lovely voice.
@soumitramondal40133 жыл бұрын
The way you explained is really awesome. Can we expect more videos like this?
@vinamrasangal8436 Жыл бұрын
no bc
@aishwaryaramesh48773 жыл бұрын
Wow, amazing video! You explained it so well that I finally understood it after breaking my head for sooo many days. Thanks a ton! 🙏🙏
@gezhi94203 жыл бұрын
讲得太好了,非常清晰。Visualization is awesome.
@MagicThanos76 ай бұрын
we definitely need more of these explanations from you
@rafsanishazidnasif529119 күн бұрын
Thank you so much. Couldn't be more clear
@tanvirtanvir6435 Жыл бұрын
3:35 2-delta distance 4:08 2d*d O(1) for each point
@FAUSTINEWANG-k7v28 күн бұрын
This is such a great explanation! Thank you so much.
@nopesep91236 ай бұрын
Incredible explanation, the best I have found, thank you very much!!!!!!!!!!!!!!!!!!!!!!!!!
@taivinh19863 жыл бұрын
the best explanations I've ever seen
@JR-vc4gm2 жыл бұрын
Wow great video! I had a hard time to understand why there was a maximum number of point in the delta region. Thank you
@mohammadyahya7811 ай бұрын
amazing amazing amazing and the best explanation for this problem. Thank you
@VikashKumar-tr9cq2 жыл бұрын
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
@peterthegreat84642 жыл бұрын
Beautiful algorithm explained by a beautiful voice
@AntonKimS2 жыл бұрын
Fantastic video! Best explanation I have seen so far. Would be awesome to see more videos on other algorithms. Thank you!
@albertswiecicki3952 жыл бұрын
Quality content, I was looking for. Thank you!
@lujainabdulrahman95722 жыл бұрын
Thank you so much, best explanation I’ve come across!
@VultureGamerPL3 жыл бұрын
Simple and to the point. Nicely done.
@HaziqAzlanShah3 ай бұрын
hello, i wish you could do more explanation videos like this. I really appreciate your clear explanation!!!
@kirby09183 жыл бұрын
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 Жыл бұрын
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
@JoeBaloney Жыл бұрын
5:57 Why for j=1 to 7? what's the 7 about?
@sohammitra86572 ай бұрын
An excellent explanation of the problem
@xiaochenliang18 күн бұрын
your video is very very great! I love it. Thank you very much!
@la337erf2 жыл бұрын
This is amazing. Please make more videos on other algorithms!!
@bayanassali23392 жыл бұрын
Very visual and clear explanation thank you so much!
@juswanth.t133Ай бұрын
Great one, especially the 2δ X δ part!!
@Zinab88502 жыл бұрын
Amazing explanation 🤩🤩 the animation was extremely helpful in seeing how the algorithm works
@waynej_xyz Жыл бұрын
so great , that was i am loving version.
@itsmayankkr3 жыл бұрын
Thank you so much for such a nice explanation :))
@ansharora32483 жыл бұрын
+1 @Mayank Kumar
@mohitmridul61643 жыл бұрын
+1 ansh arora
@rituparnaw3 жыл бұрын
@@mohitmridul6164 +1
@rituparnaw3 жыл бұрын
@Mayank Kumar +1
@ankitrao83133 жыл бұрын
Ha bhaiya. It helped a lot . Maza aa gaya 🤗🤗
@danieloladele14333 жыл бұрын
Excellent work and very easy to understand
@seharpanesar51323 жыл бұрын
This is so good. Thank you!!
@ngchongpeng7 ай бұрын
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.
@alvjkd7 ай бұрын
wow this was amazing. thank you so much for this!!
@samanasghari621310 ай бұрын
That was awesome Keep it going🎉🎉
@samoyed_fps3 жыл бұрын
It's really a clear explaination, amazing !
@leilu56072 жыл бұрын
This is an amazing explanation! 讲得好棒!
@gsmdfaheem2 жыл бұрын
This was perfect.....Thank you so much!
@DanielLochner3 жыл бұрын
Fantastic presentation! Thanks a bunch! :)
@kenz77883 жыл бұрын
the best explanation ever
@terensahin15 күн бұрын
that was a great explanation, thank you
@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).
@manrajsingh46443 жыл бұрын
Cleanest explanation ❤️
@Corgamos3 жыл бұрын
Thank you, very nicely explained!
@dhyeyparekh49944 ай бұрын
very very nice explanantion....
@1arpaxad8 ай бұрын
I think it's enough to iterate j from 1 to 4 because in each side the maximum number of points is 4
@squidsword02 жыл бұрын
amazing work. helped me a lot
@onurbaran40169 ай бұрын
For split pairs why we iterating 1 to 7?
@Pure_1172 ай бұрын
4:40 bookmark
@guolongli5524 Жыл бұрын
Thank you! Great explanation!
@MahdeeMushfiqueKamal3 жыл бұрын
Peeps who are here for BUET-18's offline-8 comment here
@nahianshabab7243 жыл бұрын
hey bro 🙂
@asifhaiderelhan3 жыл бұрын
kere mama mmk
@mdtokitahmid29703 жыл бұрын
Hola🥲
@CodeNCode-rm8ci3 жыл бұрын
Yo....bro
@osamahaque3 жыл бұрын
hehe
@AkashKumar-jl3sw3 жыл бұрын
Amazing thank you for your explanation !!!!
@Japo0po08 ай бұрын
Best explanation, bar none
@1516TanviDeshpande2 ай бұрын
Ommggg amazing explaination
@Gintoki.Sakata9182 жыл бұрын
Please make more videos🥲 If possible please create a whole series of your lectures.
@storiesshubham4145 Жыл бұрын
Great explanation mam.
@soyei8 ай бұрын
great explanation, thank you
@shubhbhalla38502 жыл бұрын
Great explanation !
@ghostwar9103 Жыл бұрын
how did you find delta in 6,8 do you brute force the left and the right with out divide it ?
@AgeOfNerds3 жыл бұрын
thank you! Very well explained!
@l501l501l2 жыл бұрын
Pretty clear. Thank you.
@potzko25522 жыл бұрын
this is such a good and clear explanation, do you mind if I use it for teaching?
@jonathanguzman8584 Жыл бұрын
God Bless you, you are great
@Muntasir007Ай бұрын
Thank you so much ❤❤
@Zaznobable Жыл бұрын
thanks a lot for your explanation
@Adityarm.08 Жыл бұрын
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 :)
@alihsanelmas3 жыл бұрын
Well explained!
@azmainfaiak8111 Жыл бұрын
3:55 7 points explanation
@saketkumar49724 ай бұрын
how did she arrived at the 2nd strip
@KaranDoshicool3 жыл бұрын
best explanation
@filz44613 жыл бұрын
Can you do more videos, please?
@advaitanand25243 жыл бұрын
Can we expect some more videos?
@hashirkz2 жыл бұрын
tysm it makes so much more sense now lol
@鐘振元-i8o Жыл бұрын
講的很好!😊
@LalithaManasviniS.P4 ай бұрын
Thank You ma'am.
@MoreCRNonYT Жыл бұрын
Thank you! :D
@alanye75422 жыл бұрын
Thank you!
@darshanbhaiya87118 ай бұрын
Great Explanation but i have not understood clearly
@MMM-hn8os9 күн бұрын
wonder how this video ' made
@udaykiran13903 жыл бұрын
First of all i was on a thought she will definitely waste my time but u nailed it 🔥
@joelwillis20439 ай бұрын
now find the optimal solution for N-dimensional Euclidean space.
@wizrom30462 жыл бұрын
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!
@iDeer702 жыл бұрын
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.
@marceloenciso66652 жыл бұрын
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.
@wizrom30462 жыл бұрын
@@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.
@wizrom30462 жыл бұрын
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 Жыл бұрын
@@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).