KZ
bin
Негізгі бет
Қазірдің өзінде танымал
Тікелей эфир
Ұнаған бейнелер
Қайтадан қараңыз
Жазылымдар
Кіру
Тіркелу
Ең жақсы KZbin
Фильм және анимация
Автокөліктер мен көлік құралдары
Музыка
Үй жануарлары мен аңдар
Спорт
Ойындар
Комедия
Ойын-сауық
Тәжірибелік нұсқаулар және стиль
Ғылым және технология
🔴 2858. Minimum Edge Reversals So Every Node Is Reachable II Graph II DP II Leetcode 2858
27:43
🔴 2856. Minimum Array Length After Pair Removals II With & Without Priority Queue II Leetcode 2856
17:57
ТЮРЕМЩИК В БОКСЕ! #shorts
00:58
The Ultimate Sausage Prank! Watch Their Reactions 😂🌭 #Unexpected
00:17
Я не из тех, кто ксивой машет - я скромный | Сериал «ПрАкурор» | 3 серия | КОНКУРС
21:38
Big or Small challenge 😂 Giant chocolate mushroom or small sausage? 🧐 #shorts Best video by Hmelkofm
00:29
🔴 2860. Happy Students II Weekly Contest 363 II Leetcode 2860
Рет қаралды 4,051
Facebook
Twitter
Жүктеу
1
Жазылу 48 М.
Aryan Mittal
Күн бұрын
Пікірлер: 14
@iZoopSoul
Жыл бұрын
Great explanation. I have to remember to consider sorting the array first - sometimes you find cool patterns like this one.
@notmewooshme9916
9 ай бұрын
The actual author of this question is the Tourist himself. Basically lc just took this question out from a codeforces contest.
@yashwanthkumar817
Жыл бұрын
I find it difficult to come up with an approach
@jeehub041
Жыл бұрын
Mast clear ho gya ❤
@karapureddyjaswanthreddy6053
Жыл бұрын
Great explanation 🎉
@udayanvats3640
Жыл бұрын
Really great explanation bhaiya🥳❤
@ashishgoyal6256
Жыл бұрын
Guru ji linkdein request to accept kr lo 🙏🙏🙏
@ritikanand3425
Жыл бұрын
i was able to come up with a recursive approach using all possible ways but was not able to memoize it as no subproblem exists
@saswatamukherjee7144
Жыл бұрын
Can you share your recursive appraoch ?
@AnkitKumar-ys7vs
Жыл бұрын
Yep can U share the recursive approach?
@ritikanand3425
Жыл бұрын
@@AnkitKumar-ys7vs class Solution { public int countWays(List nums) { int n = nums.size(); int total = 0; for(int i = 0 ; i < n ;i++){ total+=nums.get(i); } int dp[][] = new int[n][total+1]; for(int i = 0 ; i < n ;i++){ Arrays.fill(dp[i] , -1); } return helper(nums , n-1 , Integer.MIN_VALUE , Integer.MAX_VALUE , 0,dp); } public int helper(List nums , int ci , int gt ,int lt ,int takeCount,int dp[][]){ if(ci < 0){ if(takeCount > gt && takeCount < lt){ return 1; }else{ return 0; } } if(dp[ci][takeCount]!=-1){ return dp[ci][takeCount]; } int take = helper(nums , ci-1 , Math.max(gt , nums.get(ci)) , lt , takeCount+1,dp); int notTake = helper(nums , ci-1 , gt , Math.min(lt , nums.get(ci)) , takeCount,dp); return dp[ci][takeCount] = take+notTake; } }
@subhamsadhukhan9098
Жыл бұрын
Leetcode daily contest ka bhi le ke aao
@doomhead9109
Жыл бұрын
leetcode par daily contest kaha hote h ?
@subhamsadhukhan9098
Жыл бұрын
@@doomhead9109 daily challenge
27:43
🔴 2858. Minimum Edge Reversals So Every Node Is Reachable II Graph II DP II Leetcode 2858
Aryan Mittal
Рет қаралды 3,7 М.
17:57
🔴 2856. Minimum Array Length After Pair Removals II With & Without Priority Queue II Leetcode 2856
Aryan Mittal
Рет қаралды 2,4 М.
00:58
ТЮРЕМЩИК В БОКСЕ! #shorts
HARD_MMA
Рет қаралды 2,7 МЛН
00:17
The Ultimate Sausage Prank! Watch Their Reactions 😂🌭 #Unexpected
La La Life Shorts
Рет қаралды 8 МЛН
21:38
Я не из тех, кто ксивой машет - я скромный | Сериал «ПрАкурор» | 3 серия | КОНКУРС
Я ОТ САКЕ
Рет қаралды 1,4 МЛН
00:29
Big or Small challenge 😂 Giant chocolate mushroom or small sausage? 🧐 #shorts Best video by Hmelkofm
Hmelkofm
Рет қаралды 10 МЛН
50:08
3022. Minimize OR of Remaining Elements Using Operations | Weekly Leetcode 382
codingMohan
Рет қаралды 2,4 М.
9:02
🔴 2857. Count Pairs of Points With Distance k II XOR II Biweekly Contest 113 II Leetcode 2857
Aryan Mittal
Рет қаралды 1,8 М.
20:01
3243 & 3244. Shortest Distance After Road Addition Queries I & II | Graph | BFS | Ordered Set
Aryan Mittal
Рет қаралды 1 М.
8:10
🔴 2855. Minimum Right Shifts to Sort the Array II One Pass II O(n) II Biweekly Contest 113
Aryan Mittal
Рет қаралды 1,6 М.
11:35
Beginners Should Think Differently When Writing Golang
Anthony GG
Рет қаралды 124 М.
4:54
LeetCode is a JOKE with This ONE WEIRD TRICK
AlgoMonster
Рет қаралды 90 М.
54:17
Google Coding Interview With A Competitive Programmer
Clément Mihailescu
Рет қаралды 2,5 МЛН
2:37:14
HackSussex Coders' Cup 2024
HackSussex
Рет қаралды 921 М.
23:36
3031. Minimum Time to Revert Word to Initial State II | Weekly Leetcode 383
codingMohan
Рет қаралды 1,4 М.
57:24
Google Coding Interview With A High School Student
Clément Mihailescu
Рет қаралды 4,2 МЛН
00:58
ТЮРЕМЩИК В БОКСЕ! #shorts
HARD_MMA
Рет қаралды 2,7 МЛН