aryanc403
aryanc403
  • 77
  • 135 583

Video

TheOneYouWant AMA Trailer
zhlédnutí 3,5KPřed 3 měsíci
TheOneYouWant AMA Trailer
#Atcoder #ABC 345 "E - Colorful Subsequence" Editorial (By #AIR #1)
zhlédnutí 858Před 3 měsíci
#Atcoder #ABC 345 "E - Colorful Subsequence" Editorial (By #AIR #1)
#Codeforces round 930 "Bitwise Operation Wizard" Editorial
zhlédnutí 1,1KPřed 4 měsíci
#Codeforces round 930 "Bitwise Operation Wizard" Editorial
#Codeforces round 930 "Shuffle Party" Editorial
zhlédnutí 1,1KPřed 4 měsíci
#Codeforces round 930 "Shuffle Party" Editorial
#Codeforces round 930 "Pokémon Arena" Editorial
zhlédnutí 526Před 4 měsíci
#Codeforces round 930 "Pokémon Arena" Editorial
#Codeforces think-cell round 1 C. "Lexicographically Largest" editorial
zhlédnutí 2,3KPřed 4 měsíci
#Codeforces think-cell round 1 C. "Lexicographically Largest" editorial
#Codeforces think-cell round 1 A. "Maximise The Score" editorial
zhlédnutí 312Před 4 měsíci
#Codeforces think-cell round 1 A. "Maximise The Score" editorial
#Codeforces think-cell round 1 B. "Permutation Printing" editorial
zhlédnutí 982Před 4 měsíci
#Codeforces think-cell round 1 B. "Permutation Printing" editorial
#StopPostContestHacking How to play cat and mouse game ft leetcode contests (and a shadow ban)
zhlédnutí 635Před 4 měsíci
#StopPostContestHacking How to play cat and mouse game ft leetcode contests (and a shadow ban)

Komentáře

  • @nkhlsrma1262
    @nkhlsrma1262 Před hodinou

    bro do you have any list of question for a beginner to practice that will be very helpful especially for dp

  • @armeetluthra8913
    @armeetluthra8913 Před 4 hodinami

    I did not understand how finding minimum xor in a contiguous range L to R, is done by taking (arr[i] & ~msks[j]) ? I watched the video you referred, but unable to extend it here. There we were taking xor of continuous elements. Could you explain the inner for loop in more detail, what each line achieves?

  • @VivekRaj-vu9zn
    @VivekRaj-vu9zn Před dnem

    great logic for all problems, all intuitive. though the video has sound issue and also the drawing board issue where you are writing.

  • @adii16089
    @adii16089 Před 2 dny

    Thank you sir<3

  • @harshmishra5869
    @harshmishra5869 Před 2 dny

    Poor explanation

  • @adarshkashyap6483
    @adarshkashyap6483 Před 2 dny

    Great Explanation bro 🔥❤️

  • @Sha-256-rath
    @Sha-256-rath Před 2 dny

    Aryan can you please help me with this problem : Find the number of triplets of substrings of string s, such that : 1.the 3 substrings must be non overlapping 2. the 3 substrings must be palindrome individually.

    • @mayankkharb4164
      @mayankkharb4164 Před dnem

      You can use DP for this, where dp[i][k] will be the number of ways you can divide the string up to index i into k non overlapping substrings which are palindrome individually. Now the TC for this would be O(3*n^2). If your constraints satisfy this TC then it's well and good otherwise we might have to think of a better approach.

  • @shudhanshusingh1401

    Lund explanation

  • @anshsingh9739
    @anshsingh9739 Před 2 dny

    Won't there be (N+1) places where we can have 2 consecutive Dots.

    • @aryanc403
      @aryanc403 Před 2 dny

      Yes, we will have N+1 places.

  • @harrypotterfan9188
    @harrypotterfan9188 Před 2 dny

    super explanation❤‍🔥❤‍🔥🔥🔥🔥

  • @Grow.YT.Views.363
    @Grow.YT.Views.363 Před 2 dny

    You have reached your peak with this video

  • @zebra-er6xc
    @zebra-er6xc Před 2 dny

    A - 5:40

  • @Sha-256-rath
    @Sha-256-rath Před 2 dny

    As usual, very good explanation😘😘

  • @shitposting2234
    @shitposting2234 Před 3 dny

    I was able to solve ABCE . Any tips for solving problems with lower constraints? I am only able to solve O(n) and O(nlogn) ish solutions and just can't think when the constraints are lower