3419. Minimize the Maximum Edge Weight of Graph | Graph | Binary Search | BFS

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ม.ค. 2025

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

  • @katurivinay3436
    @katurivinay3436 วันที่ผ่านมา

    Explanation is top notch ❤❤❤❤❤❤

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

    I solved this using Prims Algo , but kudos to this one too !

  • @ayaaniqbal3531
    @ayaaniqbal3531 2 วันที่ผ่านมา +1

    Very Helpful Video .

  • @JazzBrown-ym8ku
    @JazzBrown-ym8ku 2 วันที่ผ่านมา

    Thank you for the video, the threshold had me stumped during the contest.

  • @hari-codes
    @hari-codes 2 วันที่ผ่านมา

    Good Explaination!

  • @kbcoder3734
    @kbcoder3734 3 วันที่ผ่านมา +4

    I solved only 1/4 in today's contest.

    • @harsh_dhakad_Gamer
      @harsh_dhakad_Gamer 2 วันที่ผ่านมา +1

      Same here
      But one day I able to solve 4 questions by myself

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

      @harsh_dhakad_Gamer yea, you will if you are consistent.

  • @ojasvikumar2137
    @ojasvikumar2137 16 ชั่วโมงที่ผ่านมา

    Loved it !!

  • @primexmystic9405
    @primexmystic9405 21 ชั่วโมงที่ผ่านมา

    Thank you

  • @nikhilprakash729
    @nikhilprakash729 3 วันที่ผ่านมา

    😊😊

  • @ayaaniqbal3531
    @ayaaniqbal3531 3 วันที่ผ่านมา +1

    bro i was able to solve first 2 problems.

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

    Once I saw this problem, I didn't even attempt. I spent like 5-10 mins trying to reason it out but couldn't. Lol. So I moved on the "hard" one, which I could still reason out

  • @Its_Shubham_Negi
    @Its_Shubham_Negi 3 วันที่ผ่านมา

    The Best 🔥

  • @prajapati-suraj
    @prajapati-suraj 2 วันที่ผ่านมา

    best explanation is there any other method to solve this question....................

    • @Jazzimus
      @Jazzimus วันที่ผ่านมา

      prim's minimum spanning tree is technically a faster solution than this.

  • @SachinKumar-wo1xp
    @SachinKumar-wo1xp 2 วันที่ผ่านมา

    Thanks

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

    Bro, I tried your solution, 670/671 test cases are running fine on LC using this solution.
    For the last test case, its giving TLE using your solution 🙃

    • @Piyanshu-d5x
      @Piyanshu-d5x 2 วันที่ผ่านมา

      same issue here ! though i was using c++

    • @shatulbansal4756
      @shatulbansal4756 วันที่ผ่านมา

      @@Piyanshu-d5x I also used C++

  • @raunakagarwal8284
    @raunakagarwal8284 3 วันที่ผ่านมา +1

    2/4

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

    4th question please

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

    It was easy questions but threshold one was confusing, why they have given this 😏

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

    you didnt even used threshold conditions ,, even though leetcode 700 test cases didnt had a single case where threshold will be challenged. but your code has flaw

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

    why error is coming
    class Solution {
    public:
    void addEdge(int u , int v , list* &revl){ // u----v
    // directed
    revl[u].push_back(v);
    }
    bool isposs(int n ,vector& edges , int maxwt ){
    list *revl = new list[n];
    for(auto e : edges){
    if(e[2]