Codeforces Round 949 B - Turtle and an Infinite Sequence

แชร์
ฝัง

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

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

    Accepted Solution Link : codeforces.com/contest/1981/submission/263455461

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

    Actually the video was very beginner friendly and i want to thank you and i want to request you to continue to post videos.Thank you
    I and my friends will be waiting for your video solutions after every contest hope you will post .

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

      Thank you so much for the kind words 😄

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

    Great Video. Just Subscribed

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

    while(L

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

      Constraints for L and R were 1e9
      So a loop from l to r would be O(1e9) at worst case which is why we shouldnt go with that approach

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

      ​@@formidablechief27nahi bro. He is taking or... Maximum 31 operations for this problem with this code se clearly

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

      how did you think of this approach?

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

    Best explanation 😊

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

    beginner friendly explanation

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

    Great explanation and technique

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

    Thank you bhaiya ❤

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

    thank you a lot, please keep it up!

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

    How to implement isset function in c++ here??

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

      boolean isSet(long x, long bit) {
      return ((x >> bit) & 1L) == 1L;
      }

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

      This is my implementation in java
      For c++ just long long will come in place of long

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

    Nice!

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

    Nice sirji

  • @NITISHMISHRA-nr8fi
    @NITISHMISHRA-nr8fi 5 หลายเดือนก่อน

    bhaiya how to improve mere dimag me ni ate approches

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

      aap ye question mai konse point tak soch paye the ?
      phir aage batata hu

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

      ​@@formidablechief27 n-m to n +m OR lena hai wo smj gya tha

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

      ​@@sdmfslkdm thike toh aapne pehla step complete kardiya. Abhi contraints 1e6 hote 1e9 ke badle toh directly brute force se OR kardete hum.
      But yaha pe waisa nahi tha
      Toh bitmasking mai dusra ek hi option bachta hai. Every bit ko check karna
      Phir ye sochna hai ki pure range maise atleast ek number mai bit set hai toh pure ans mai wo bit set hojaata hai.

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

      @@formidablechief27 acha got it