iDeer7
iDeer7
  • Видео 7
  • Просмотров 89 180
《星晴》Cover - 周杰伦 | 和声是灵魂哇
《星晴》Cover - 周杰伦 | 和声是灵魂哇
Просмотров: 363

Видео

Heather (cover) - Conan Gray
Просмотров 4852 года назад
Piano vocal harmony
Dream a Little Dream of Me (cover)
Просмотров 5712 года назад
Ukulele vocal harmony
Recipe for Romance - Charley Harrison
Просмотров 2372 года назад
Vassar Jazz Ensemble - Concert Spring 2022 Video filmed by Doudou Official concert is archived in Vassar College music department page - Concerts & Events
Daybreak - Ghibli-styled original piece orchestrated
Просмотров 1773 года назад
I have been studying Joe Hisaishi's compositions for Studio Ghibli for a year now, and I will continue to do so with some computational methods in my final semester at college. After analyzing around 60 cues from 10 Ghibli films, I found some musical characteristics (archetypes) present in almost all of Hisaishi's Ghibli works, which, in my view, most saliently define his recognizable style. Th...
Closest Pair of Points (Divide and Conquer) Explained
Просмотров 87 тыс.3 года назад
This is a recorded presentation for a college course (CMPU241, Spring 2021). Algorithm explained: Closest Pair of Points (using the Divide and Conquer method) Time & Space complexity: O(nlgn)

Комментарии

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

    wonder how this video ' made

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

    that was a great explanation, thank you

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

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

  • @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.

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

    Thank you after 3 years

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

    Thank you so much ❤❤

  • @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).

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

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

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

    An excellent explanation of the problem

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

    Ommggg amazing explaination

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

    4:40 bookmark

  • @MMM-hn8os
    @MMM-hn8os 3 месяца назад

    好棒好棒🙃

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

    For anyone confused about the "for j=1 to j = 7" part, here is my take at explaining this: For every point p in S, we need only to check points q in distance dist(p, q) <= d. Recall that every pair of points in the left sector has distance at most d. Same thing for the right sector. (If it wasn't that way, we would have a smaller d.😏) Take a paper and draw a circle (a filled circle, not just circumference) of radius d and center point p. Try fitting as many points inside as you can, so that all points in the left half are at least d distance apart from each other. And in the right half, also they are d distance apart. You get a hexagon (6 vertices + 1 center = 7) i.imgur.com/FWN0Okm.png Thus we can iterate through S and check just the next 7 points.

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

      One more thing: About the points laying exactly in the line going through center. We don't know in which sector (left or right) they will be sentenced to.

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

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

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

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

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

    Thank You ma'am.

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

    how did she arrived at the 2nd strip

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

    very very nice explanantion....

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

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

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

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

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

    we definitely need more of these explanations from you

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

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

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

    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.

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

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

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

    Best explanation, bar none

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

    OMG, that was the BEST explanation EVER! You're a lifesaver, thanks a TRILLION!

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

    great explanation, thank you

  • @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

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

    Great Explanation but i have not understood clearly

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

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

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

    For split pairs why we iterating 1 to 7?

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

    That was awesome Keep it going🎉🎉

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

    W vid

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

    感恩

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

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

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

    講的很好!😊

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

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

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

    3:55 7 points explanation

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

    so great , that was i am loving version.

  • @Chellali.A
    @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.

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

    Great explanation mam.

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

    Thank you! :D

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

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

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

    woah wasn't expecting to find this after reviewing dynamic programming

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

    Pls accept my LinkedIn request 🥺

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

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

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

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

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

    God Bless you, you are great

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

    thank you