3266. Final Array State After K Multiplication Operations II | Weekly Leetcode 412

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

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

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

    Amazing !!! thank you!

  • @lambukushireddy424
    @lambukushireddy424 8 วันที่ผ่านมา

    QUALITY>>>

  • @anmolbansal4009
    @anmolbansal4009 2 หลายเดือนก่อน +1

    what a great explanation....i just discovered your channel today....other people have just wrote the code and didnt tell intuition behind working of it.....u gave such a detailed explanation with proper intuition.....will come every week to see solution of the contest questions which i will not be able to solve.....please never stop uploading.....maybe u r getting less views now but 1k-2k people who are watching i am sure are getting a great help from this....thanks

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

    Amazing explanation also do a dry run of code also for beginners

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

    THIS QUALITY CONTENT >>>>>>>

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

    Great explanation. Improve your thumbnail you deserve more ❤🎉

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

    a great, easy to follow and comprehensive explanation 🔥

  • @bikramjitdas2621
    @bikramjitdas2621 2 หลายเดือนก่อน +1

    Your channel is a gem, the only feedback which I would like to give you- there are too many playlists which are not organized in the easier to harder order. For beginners, it is confusing if they want to follow you or which path to follow step by step. Could you please make a dedicated video / organize your content in easy to high level problems as such it would be easy for everyone to follow? Thanks!

  • @mayanksharma2039
    @mayanksharma2039 2 หลายเดือนก่อน +1

    So good video. Crystal clear. Please continue making such type of videos very helpful

  • @MayankGour-c9p
    @MayankGour-c9p 2 หลายเดือนก่อน

    Overwhelmed by the explanation :)

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

    Thank you, great explanation!

  • @AnandKumar-kz3ls
    @AnandKumar-kz3ls 2 หลายเดือนก่อน +1

    thank mohan, for this much-needed video i really appreciate it

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

    Great Explanation!

  • @nikhilprakash729
    @nikhilprakash729 2 หลายเดือนก่อน +1

    Great Solution Bhaiya..

  • @SasankNasika
    @SasankNasika 2 หลายเดือนก่อน +1

    god's work

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

    thank you

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

    thnxx keep going.

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

    is this any cp concept? how 300 people solved this in the time of contest?

  • @manikantasai6118
    @manikantasai6118 2 หลายเดือนก่อน +1

    bro mohan is your real name?

    • @codingmohan
      @codingmohan  2 หลายเดือนก่อน +1

      My real name is Subham.

    • @dawodujohnson
      @dawodujohnson 2 หลายเดือนก่อน +1

      ​@@codingmohanall hail king Subham

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

    sir not able to understand whats wrong in my code class Solution {
    public:
    const int MOD = 1000000000+7;
    long long power_mod(long long base, long long exp) {
    long long result = 1;
    while (exp > 0) {
    if (exp % 2 == 1) {
    result = (result * base) % MOD;
    }
    base = (base * base) % MOD;
    exp = exp / 2;
    }
    return result;
    }
    vector getFinalState(vector& nums, int k, int multiplier) {
    if(multiplier ==1) return nums;
    priority_queue minHeap;
    int initialMaximum =0 ;
    int initialMaximumIndex = -1;
    for(int i=0 ;i initialMaximum) {
    initialMaximum = nums[i];
    initialMaximumIndex = i;
    }
    }
    while(k> 0 && minHeap.top().first*multiplier 0) {
    nums[minHeap.top().second]=(minHeap.top().first*multiplierKiPowerKaResult)%MOD;
    minHeap.pop();
    }
    for(int i=0 ;i