Heap 6 Interview Problem | Height of Heap | Minimum Cost of ropes | Magician and Chocolates

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 พ.ย. 2024

ความคิดเห็น • 117

  • @mohit6215
    @mohit6215 8 หลายเดือนก่อน +30

    This man from IIT GUWAHATI IS SHAPING OUR FUTURE ❤❤

  • @MrAnon07
    @MrAnon07 8 หลายเดือนก่อน +8

    Really helpful videos♥
    1:21:48 Last tak

  • @allinonemoviesyt
    @allinonemoviesyt 8 หลายเดือนก่อน +3

    00:02 Understanding and solving heap related problems
    02:23 Understanding the concept of heap height in detail
    06:55 Understanding the height formula of the heap
    09:07 Logic behind multiple divisions and height calculation
    13:25 Finding minimum cost of connecting ropes
    15:31 Finding the minimum cost of connecting ropes
    22:03 Explaining the process of shifting elements in solving a problem
    25:48 Shifting elements to maintain order in a heap
    28:01 Understanding and using Min Heap in priority
    31:58 Priority order for inserting and removing elements in a heap
    33:49 Efficiently perform log operations and cost calculations
    37:35 Optimizing insertion process using priority queue
    39:16 Creating and using heaps to solve problems
    43:21 Magician demonstrating a chocolate eating trick with a twist
    45:20 Solving chocolate distribution problem with strategic approach
    49:10 Implementing a heap and sorting the elements
    51:02 Understanding time complexity of heap operations
    54:48 Understanding the time complexity of heap operations
    56:26 Implementing priority queue utilizing heap for maintaining a min heap structure.
    1:00:11 Selecting the heaviest stones based on weight.
    1:02:02 Collision of stones in a heap
    1:05:48 Explanation of the process of removing elements from a heap
    1:07:23 Returning the top element of a priority queue after certain operations.
    1:11:26 Maximize profit by selecting and selling seats strategically
    1:13:21 Select the maximum value and perform delete and insert operations simultaneously.
    1:16:56 Understanding and implementing heap data structure
    1:18:50 Implementation of a heap algorithm

    • @CoderArmy9
      @CoderArmy9  8 หลายเดือนก่อน +3

      Thanks

  • @Aniruddha_Mukherjee
    @Aniruddha_Mukherjee 8 หลายเดือนก่อน +4

    Last Stone Weight :
    _________________________________________________
    int lastStoneWeight(vector& stones) {
    priority_queue q;
    for (int i = 0; i < stones.size(); ++i) {
    q.push(stones[i]);
    }
    int first = 0;
    int second = 0;
    while (q.size() > 1) {
    first = q.top();
    q.pop();
    second = q.top();
    q.pop();
    int dif = abs(first - second);
    if (dif > 0) {
    q.push(dif);
    }
    }
    return (q.size() > 0 ? q.top() : 0);
    }

  • @utkarshsingh09
    @utkarshsingh09 14 วันที่ผ่านมา

    For students coming to see review of his videos
    "I gotta tell you, It was perfect. Perfect. Everything, down to the last minute details.

  • @Aniruddha_Mukherjee
    @Aniruddha_Mukherjee 8 หลายเดือนก่อน +2

    Problem 6 :
    ___________________________________________________
    int Solution::solve(vector &A, int B) {
    priority_queue q;
    for(int i = 0; i

  • @anshror2583
    @anshror2583 7 หลายเดือนก่อน +4

    Bro has some serious teaching skills wow well done rohit bhaiya

  • @nikhilrai6373
    @nikhilrai6373 22 วันที่ผ่านมา

    your DSA course is more comprehensive than others ❤❤

  • @be_a_DT
    @be_a_DT 6 หลายเดือนก่อน +1

    Really helpful videos
    1:21:48 Last tak

  • @pranavmittal9619
    @pranavmittal9619 8 หลายเดือนก่อน +2

    Learning : every second important just go with the flow and embrace in mind and make notes and do revision

  • @rajnishrajain5003
    @rajnishrajain5003 4 หลายเดือนก่อน +1

    NO ONE CAN GIVE THIS LEVEL OF EXAPLATION🔥🔥

  • @bharatmalik2756
    @bharatmalik2756 8 หลายเดือนก่อน +4

    Bhaiya OP content and mind blowing explanation 😼

  • @sumangoswami576
    @sumangoswami576 3 หลายเดือนก่อน +1

    last tak dekh liya bhaiya bhot badiya lecture the 🙂🙂🙂

  • @asad_iliyas
    @asad_iliyas 5 หลายเดือนก่อน +2

    Bhaiya you have increased our level so much that now these easy questions doesn't excites me. Please do some hard level questions.

  • @heetpatel3037
    @heetpatel3037 5 หลายเดือนก่อน +1

    Jai shree Ram ❤️ ek dum OP content bhaiya what an explanation. :::))

  • @Aniruddha_Mukherjee
    @Aniruddha_Mukherjee 8 หลายเดือนก่อน +2

    Problem 5 :
    ____________________________________________
    /* function parameter names have been changed for simplicity */
    long long pickGifts(vector& B, int A) {
    priority_queue q;
    long long sum = 0;
    for(int i = 0; i

  • @arnavgupta5830
    @arnavgupta5830 2 วันที่ผ่านมา

    class Solution{
    public:
    int heapHeight(int N, int arr[]){
    // code here
    int height=-1;
    for(int i=0; i

  • @SeetaramSharma-ku7oy
    @SeetaramSharma-ku7oy 3 หลายเดือนก่อน

    Seriously teaching no backwas Rohit bhaiya ki jay ho

  • @rajurock9479
    @rajurock9479 2 หลายเดือนก่อน

    Nice ❤❤ best series on heap concept chamka gaya

  • @Sanataniblood-mb5pu
    @Sanataniblood-mb5pu 4 หลายเดือนก่อน

    Thanks bhaiya ❤️🙏🏻
    Another wonderful lecture bhaiya ❤❤

  • @aakashy_07
    @aakashy_07 2 หลายเดือนก่อน

    Thankyou bhaiya..
    Priority queue✅🤙🏻

  • @sachinprajapati815
    @sachinprajapati815 8 หลายเดือนก่อน +2

    last stone weight came in my drive question but i did not know priority queue so I could not solve it. thank you bhaiya ❤❤.

    • @CoderArmy9
      @CoderArmy9  8 หลายเดือนก่อน +4

      Ab lag rha hga, ye toh bacho wala question th..

  • @dhruv12151
    @dhruv12151 4 หลายเดือนก่อน

    Superb lecture bhaiya 👍👍👍👍👍

  • @vinodbarti9237
    @vinodbarti9237 6 หลายเดือนก่อน

    Thnks Bhaiya Able To Solve 2 Question By Self 😀😀

  • @divyanshsharma673
    @divyanshsharma673 8 หลายเดือนก่อน +1

    Great Lecture as always !! 🔥🗿

  • @zafrul_islam
    @zafrul_islam 6 หลายเดือนก่อน

    Bhaiya maja aa gya array and heap wala concept sikh kar ke ki kb array ka use karna hai and kb heap ka 🔥🔥🔥🔥

  • @rejaulislam2593
    @rejaulislam2593 2 หลายเดือนก่อน

    last tak...alhamdulillah...may allah bless u

  • @manish_kumar_iitg
    @manish_kumar_iitg 2 หลายเดือนก่อน

    Problem 5:-
    long long pickGifts(vector& gifts, int k) {
    priority_queuep;
    for(long long i = 0; i< gifts.size(); i++){
    p.push(gifts[i]);
    }
    while(k--){
    p.push(sqrt(p.top()));
    p.pop();
    }
    long long ans = 0;
    while(!p.empty()){
    ans += p.top();
    p.pop();
    }
    return ans;
    }

  • @dayashankarlakhotia4943
    @dayashankarlakhotia4943 8 หลายเดือนก่อน

    static int heapHeight(int N,int[]arr){
    return (int)(Math.log(N)/Math.log(2));
    }

  • @shubhamkumarjha9192
    @shubhamkumarjha9192 8 หลายเดือนก่อน +1

    Good evening bhaiya ji. 💖

  • @ranjeetguptaiitm2852
    @ranjeetguptaiitm2852 8 หลายเดือนก่อน +1

    very nice explanation🥰🥰

  • @AbhinavShinde-gr4bt
    @AbhinavShinde-gr4bt 4 หลายเดือนก่อน

    superb lecture

  • @aakankshasharma-h7f
    @aakankshasharma-h7f 6 หลายเดือนก่อน

    Bhaiya you are really amazing .Thankyou so much

  • @Child-game-1
    @Child-game-1 2 หลายเดือนก่อน

    wonderful sir

  • @Sanataniblood-mb5pu
    @Sanataniblood-mb5pu 4 หลายเดือนก่อน +1

    1:21:58 Last tak ❤❤

  • @utkarshsingh09
    @utkarshsingh09 14 วันที่ผ่านมา +1

    1:21:53 Last Tak 🎉

  • @YashSaini007
    @YashSaini007 8 หลายเดือนก่อน +1

    Bhaiya Radhe Radhe 🙏

  • @SUN_SUN2
    @SUN_SUN2 4 หลายเดือนก่อน

    last tak
    Amazing lec

  • @GauravKumar-jw3fu
    @GauravKumar-jw3fu 8 หลายเดือนก่อน

    RAdhe- RAdhe BHaiya Ji❤

  • @punitsharma584
    @punitsharma584 2 หลายเดือนก่อน

    nyc completed this

  • @Ramankumar-lo4hv
    @Ramankumar-lo4hv 2 หลายเดือนก่อน

    chamak chuka hh bhaiya ji😁

  • @chanchalsoni7535
    @chanchalsoni7535 4 หลายเดือนก่อน

    aap nahi hote to itne hajaro learners ka kya hota🥺🥺.....#lifeSaviour😇

  • @AbhishekKumar-lp7wy
    @AbhishekKumar-lp7wy 8 หลายเดือนก่อน +3

    Good night bhaiya ji

  • @Aniruddha_Mukherjee
    @Aniruddha_Mukherjee 8 หลายเดือนก่อน +3

    problem no : 1
    ______________________________________
    long long minCost(long long arr[], long long n) {
    // Your code here
    priority_queue pq;
    long long int ans = 0;
    for(int i = 0; i 1) {
    first = pq.top();
    pq.pop();
    second = pq.top();
    pq.pop();
    ans+=first+second;
    pq.push(first+second);
    }
    return ans;
    }

  • @Sumit-wy4zp
    @Sumit-wy4zp 8 หลายเดือนก่อน +2

    Rohit Bhai Please project ke upper ek video chahiye . pichle 1 saal se dsa kar raha hun but projects ka koi idea nahi hai. abhi 6th sem me hun.. bahut demotivate feel kar raha hun

    • @zafrul_islam
      @zafrul_islam 6 หลายเดือนก่อน

      @CoderArmy9 haan bhaiya please

  • @ankitchoudhary2914
    @ankitchoudhary2914 7 หลายเดือนก่อน

    LOved 2Days' class

  • @Noobiee_FPS
    @Noobiee_FPS 8 หลายเดือนก่อน

    last tak dekh ke smjh aa gya bhaiya kab heap ko use krna h

  • @divyanshsharma673
    @divyanshsharma673 8 หลายเดือนก่อน +1

    लास्ट तक 🎉

  • @vijaysingh-n6p9j
    @vijaysingh-n6p9j 5 วันที่ผ่านมา

    bhaiya mja aa gya

  • @Vardanaggarwal
    @Vardanaggarwal 7 หลายเดือนก่อน

    amazing.

  • @heetpatel3037
    @heetpatel3037 5 หลายเดือนก่อน

    Last tak ❤️

  • @YashSaini007
    @YashSaini007 8 หลายเดือนก่อน +1

    Day - 184 #180DaysOfCode

  • @sbworld13
    @sbworld13 8 หลายเดือนก่อน +3

    ❤️✨🔥

  • @heetsheth6402
    @heetsheth6402 5 หลายเดือนก่อน

    Last Tak ❤❤❤❤

  • @saketjaiswalSJ
    @saketjaiswalSJ 6 หลายเดือนก่อน

    hacker or wott thanks bhai

  • @Xcoder__1957
    @Xcoder__1957 หลายเดือนก่อน

  • @pranavmittal9619
    @pranavmittal9619 8 หลายเดือนก่อน +1

    Last Tak 🎉 vo bhi bina skip kare

  • @allinonemoviesyt
    @allinonemoviesyt 8 หลายเดือนก่อน

    1:10:11 Homework Question
    class Solution {
    public:
    long long pickGifts(vector& gifts, int k) {
    priority_queue pq;
    for(int i:gifts) pq.push(i);
    while(!pq.empty() && k--){
    pq.push(floor(sqrt(pq.top())));
    pq.pop();
    }
    long long ans = 0;
    while(!pq.empty()){
    ans += pq.top();
    pq.pop();
    }
    return ans;
    }
    };

  • @tradun.s9760
    @tradun.s9760 4 หลายเดือนก่อน

    last tak 🤟🤟

  • @JHARAJESHRAMAN
    @JHARAJESHRAMAN 8 หลายเดือนก่อน

    bhaiya JS ka badle full stack development jo bhi sahi rahe vo launch kardo aap🙏

  • @Aniruddha_Mukherjee
    @Aniruddha_Mukherjee 8 หลายเดือนก่อน +1

    🥰🥰

  • @NitinSingh-zy8io
    @NitinSingh-zy8io 5 หลายเดือนก่อน

    QUESTION:1 MOST UNIQUE SOLUTION ALL OVER THE INTERNET
    class Solution{
    public:
    int heapHeight(int N, int arr[]){
    // code here
    int count=0;
    for(int i=1;i

  • @OnlyPc-c9n
    @OnlyPc-c9n 3 หลายเดือนก่อน

    last tak ❤

  • @ManojSinghRawat-x2w
    @ManojSinghRawat-x2w 7 หลายเดือนก่อน +1

    last tak😎

  • @ShubhamKumar-vk8me
    @ShubhamKumar-vk8me 7 หลายเดือนก่อน

    Chamak gaya bhaiya

  • @kuldeepparmar9861
    @kuldeepparmar9861 7 หลายเดือนก่อน +1

    last tk chamak gya

  • @Aniruddha_Mukherjee
    @Aniruddha_Mukherjee 8 หลายเดือนก่อน

    last tak 🤩

  • @itshirdeshk
    @itshirdeshk 7 หลายเดือนก่อน

    Day 184 ✅🔥

  • @wisdomMate
    @wisdomMate 8 หลายเดือนก่อน

    Chamka++

  • @pankajdubey1123
    @pankajdubey1123 8 หลายเดือนก่อน

    thinking process ++++++

  • @anuragpandey715
    @anuragpandey715 8 หลายเดือนก่อน

    last tak 🤗🤗🤗🤗🤗🤗

  • @AMITKUMAR-ds4hp
    @AMITKUMAR-ds4hp 8 หลายเดือนก่อน +1

    Hi boss

  • @maheshpatil1750
    @maheshpatil1750 2 หลายเดือนก่อน

    last tak.....😁

  • @kirankarakalli1408
    @kirankarakalli1408 8 หลายเดือนก่อน

    Lasttak

  • @darshanrathod-c1h
    @darshanrathod-c1h 8 หลายเดือนก่อน

  • @deepfan14
    @deepfan14 8 หลายเดือนก่อน

    I am think to try this course can plz some one tell me that does this course teach you all concept with in-depth knowledge

    • @CoderArmy9
      @CoderArmy9  8 หลายเดือนก่อน +1

      Bro aap first lecture dekh lo, aapko answer mil jaayega..

    • @deepfan14
      @deepfan14 8 หลายเดือนก่อน +1

      Thanks ❤

  • @avinash2421
    @avinash2421 8 หลายเดือนก่อน

    Last Tak

  • @nepalihoni9213
    @nepalihoni9213 4 หลายเดือนก่อน

    op op

  • @defenceboimotivation
    @defenceboimotivation 5 หลายเดือนก่อน

    lasttak

  • @anuragrajput4613
    @anuragrajput4613 7 หลายเดือนก่อน

    Last tak

  • @Rahul-cn8bq
    @Rahul-cn8bq 3 หลายเดือนก่อน

    heap++

  • @akashparashar1851
    @akashparashar1851 4 หลายเดือนก่อน

    antim tak

  • @mohit6215
    @mohit6215 8 หลายเดือนก่อน +1

    last tak kon kon tha

    • @deepfan14
      @deepfan14 8 หลายเดือนก่อน

      Bro is this is good or not

    • @deepfan14
      @deepfan14 8 หลายเดือนก่อน

      Should I do this or course of c++ by codehelp-by babbar

    • @mohit6215
      @mohit6215 7 หลายเดือนก่อน

      It is awesome ❤

  • @vaishalichoudhary5
    @vaishalichoudhary5 8 หลายเดือนก่อน

    Last tk:)

  • @VivekGupta-rw6oo
    @VivekGupta-rw6oo 8 หลายเดือนก่อน +1

    Bhaiya last tak

  • @SmritiSharma-vv7ib
    @SmritiSharma-vv7ib 2 หลายเดือนก่อน

    Last tak bro

  • @pankajdubey1123
    @pankajdubey1123 8 หลายเดือนก่อน

    last tak

  • @PradeepKumar-bc1ez
    @PradeepKumar-bc1ez 3 หลายเดือนก่อน

    Last tk

  • @jagriti4813
    @jagriti4813 8 หลายเดือนก่อน +1

    Brother ik TRIES topic in c pr bhi vdo needed h.@coderarmy

    • @CoderArmy9
      @CoderArmy9  8 หลายเดือนก่อน +1

      Tries, segment tree , fenwick Tree last mein cover hga, don't worry...

  • @harshitpatil6138
    @harshitpatil6138 4 หลายเดือนก่อน

    Last tak❤

  • @parthpath2672
    @parthpath2672 7 หลายเดือนก่อน

    Last tak

  • @allinonemoviesyt
    @allinonemoviesyt 8 หลายเดือนก่อน

    last tak

  • @balramsinghjadon822
    @balramsinghjadon822 2 หลายเดือนก่อน

    Last tk

  • @apna_talks
    @apna_talks 13 วันที่ผ่านมา

    Last tak❤

  • @rocketgamerzz.7577
    @rocketgamerzz.7577 4 หลายเดือนก่อน

    Last tak

  • @demoDevv
    @demoDevv 7 หลายเดือนก่อน

    last tak

  • @amitkr369
    @amitkr369 4 หลายเดือนก่อน

    Last tak

  • @gopalmalpani1947
    @gopalmalpani1947 7 หลายเดือนก่อน

    last tak

  • @ujjwalrajak6233
    @ujjwalrajak6233 3 หลายเดือนก่อน

    Last tak

  • @asad_iliyas
    @asad_iliyas 5 หลายเดือนก่อน

    last tak