Thanks to you, my daily challenge streak is alive.
@supremoluminary6 ай бұрын
Wow. I couldn’t even make sense of the problem. I like your walk-through and approach to these problems. Most of these problems are not practical, useful, or relevant to front end engineering. But they are relevant to passing the interview. In 2009, I failed my google interview when I couldn’t solve “product of array except self“. You don’t even need the edges array. Wow.
@amoghghadge84516 ай бұрын
Thank you for the consistent speedy solutions 🙌
@MP-ny3ep6 ай бұрын
Watched so many solutions. Yours was the only one that I understood.
@KADOfficial236 ай бұрын
other people videos were really confusing, you were straight to the point.. thanks!!
@grantpeterson25246 ай бұрын
A solution I found is O(n) time complexity and O(1) space. Basically, considering that each value is either "flipped" or "not flipped", and we need to ensure the number of "flips" we make is even (flipped in pairs of 2), that means that *at most* we will need to give up 1 of the larger values and instead take the smaller value to make it even (we can take ALL the larger values if the flips are even). Obviously, we'll want to flip back the value that has the smallest difference between being XORed vs not XORed. So, we go through the values, tracking these pieces of information: the total sum of all values (adding greedily whichever value is larger, XOR or not XOR), a boolean value `oddFlips` which starts as false and toggles every time we add an XOR value to the sum, and then absolute value of the smallest difference between the XOR and not XORed value. Then, at the end, if we have an odd number of flips, we just subtract that smallest difference to effectively "flip back" that node to remove the extra value it gave.
@hkleiser58486 ай бұрын
you can take range(1, len(nums), 2): path_delta =delta[i-1] + delta[i], and the first if isn't needed
@michael._.6 ай бұрын
your approach and explanation for this question is absolutely superb, nailed it down
@abhinavkumar43755 ай бұрын
Speechless superb approach thank you so much
@Pegasus02Kr6 ай бұрын
I really liked the thought process you explained in this video. Thank you for the effort!
@darshanvanza38896 ай бұрын
You are the best, hands down 🙌
@pastori26726 ай бұрын
12:03 that looks more like amongus
@NS-qo1ze6 ай бұрын
Instead of sorting, we can keep track of sum_of_delta, count_of_delta, min_delta for delta >= 0, max_neg_delta for delta < 0. Now if count is even then answer is sum(nums)+sum_delta else we need to either remove the min delta or add a neg delta from delta < 0. answer looks something like this sum(nums)+sum_delta+ max(-min_delta,max_neg_delta). This will be O(n)
@bedminer16 ай бұрын
If anyone wants to see a step by step walk-through, you can check out approach 4 in the editorial of this question
@IlaiShoshani6 ай бұрын
I don't think you need to store the count and delta, you can just store the sum and a variable "min_delta" that stores the minimum difference to the sum between doing a xor operation on a certain node or not, it includes the negative delta inside of it. Am I missing something?
@Yogesh-D9446 ай бұрын
Bro your way of teaching and the way you solve the problems are really good 🔥
@hoyinli74626 ай бұрын
After I watched your second hint, this question became a piece of cake. Thx
@СергейШиман-ь5с6 ай бұрын
Great explanation as always. Thanks for your efforts
@supremoluminary6 ай бұрын
The one nitpick I have with your code is the first break statement. instead, loop through len(nums) -1. Thank you.
@slizverg236 ай бұрын
I'm pretty sure that problem's description says that we can only peek two nodes that have EDGE between them, not a PATH. And you don't use "edges" array in your soltion. But your solutions works and that's what matters) Thanks!
@SunsetofMana6 ай бұрын
He explains why. Mathematically/geometrically if it is a tree (connected) then every edge is a part of a path. That’s what the problem kind of confuses you with. So you don’t really need to care about the edges, the fact that every node has a path to every other one because it’s a tree means you can do some combination of XOR that will edit just that node and one other node. It just has to be a total of 2 nodes that XOR
@slizverg236 ай бұрын
@@SunsetofMana yep, probably missed that in the video. Now I get it, thanks)
@guruprasath28626 ай бұрын
Thanks Beats 100 % by time and Memory, if odd changes where made think of minimum impact value and take XOR on that value count = 0 small_impact = None for x in range(len(nums)): if (nums[x] ^ k) > nums[x]: nums[x] = nums[x] ^ k count += 1 if small_impact is None: small_impact = x else: if (nums[x] - (nums[x] ^ k)) < (nums[small_impact] - (nums[small_impact] ^ k)): small_impact = x if count%2 == 0: return sum(nums) else: nums[small_impact] = nums[small_impact] ^ k return sum(nums)
@sandeepsrinivas76 ай бұрын
nice thinking. here's a shorter code. class Solution: def maximumValueSum(self, nums: List[int], k: int, edges: List[List[int]]) -> int: odd, impact = 0, float('inf') for i, n in enumerate(nums): xored = n ^ k if xored > n: nums[i] = xored odd += 1 impact = min(impact, nums[i] - (nums[i] ^ k)) return sum(nums)-impact if odd % 2 != 0 else sum(nums)
@TitasSaha-er5ye6 ай бұрын
love your videos mann!!! you make them look so easy. thank you!!
@RazatAggarwal6 ай бұрын
I just came up with O(2^n ) Solution . But I was able to notice this XOR property . Thanks NeetCode for your efforts.
@swanv9516 ай бұрын
I find it difficult to convince myself that this works, but then sorting can be eliminated easily: count number of positive deltas; if you have even number of them then take all of them, otherwise take all but the min positive delta; then decide whether to include or discard min positive and max non-positive delta (if it exists) pair. So you need to track number of positive deltas, min positive delta and max non-positive delta values - no sorting required. This also eliminates need for delta[] array.
@ruthviks6 ай бұрын
No that won't work because lets say my delta values are like [6, 4, 3, -1]. Based on your logic if I have to count only positive values and add it up it'll be 6 + 4 + 3 = 13 and since number of +ve delta values is odd, we deduct 3 (the minimum value) from it and hence the answer will be 13 -3 = 10. However, if I were to consider 3, -1 as well, then the new result would be 6 + 4 + 3 + -1 = 12. 12 > 10 Hence we need to check upon the pair sum values and then do it.
@jankes4336 ай бұрын
@@ruthviks No, he is correct, what he meant by keeping track of max non-positive delta is that he will keep a track of a sum of postives, a maximum negative delta and minimum positive delta, after running through array in O(n) and O(1) memory. In your example: [6, 4, 3, -1], after going through array he has: - maximum negative is: -1 - minimum positive is: 3 - count of 3 positive deltas with sum 6 + 4 + 3 = 13 Steps are: - deduct minimum_positive (because we have an odd count of positives) -> 13 - 3= 10 - decide whether we should add (minimum_positive + maximum_negative), we might be adding minimum_positive back but with maximum negative so that the added sum is maximal -> (3 + -1) = 2, It's positive so we add it to total -> 10 + 2 = 12
@ruthviks6 ай бұрын
@@jankes433 Yes this can be done. I didn't think of the part where we can keep track of the negative as well. Thanks for the perspective!!
@aloha99386 ай бұрын
O(n) solution, XOR all the numbers that needs to be XOR'ed to increase the total value, if we XOR'ed even times, all is good and we can return sum of all the numbers. If we XOR'ed odd times, we need to XOR one number back to its lower value. So we XOR the number which has the smallest delta (absolute difference) with its XOR'ed value, then update the result accordingly. class Solution: def maximumValueSum(self, nums: List[int], k: int, edges: List[List[int]]) -> int: bad = 0 # no.of bad nodes. bad nodes == nodes who should be XOR'ed to increase its value res = 0 smallest_diff = [float('inf'),None] # [ diff, index ] to keep track of which node has the smallest delta for i,n in enumerate(nums): diff = (n^k) - n if smallest_diff[0] > abs(diff): smallest_diff = [abs(diff),i] if diff > 0: nums[i] = n^k bad += 1 res += nums[i] if bad%2: # if odd no.of bad nodes, we must leave 1 bad node. if even, we can convert all to good nodes res = res - nums[smallest_diff[1]] + (nums[smallest_diff[1]]^k) return res
@jeremytsai69876 ай бұрын
Brilliant! Save my day!
@EranM6 ай бұрын
you can iterate till len(nums) - 1, instead of writing this if and break in the for loop
@AkshaySharma-bg3oj6 ай бұрын
yeah you helped me solve the problem by giving hints. Thanks :)
@olegleonov13106 ай бұрын
Brilliant explanation!
@aayushgirdhar17596 ай бұрын
man you make hard problems easy!
@vikram--krishna6 ай бұрын
Thanks for the simple and concise explanation, If possible can you share the O(n) approach which you mentioned existed for this problem?
@AGENT-gw4vd6 ай бұрын
Nice approach 🎉
@jamestwosheep6 ай бұрын
Gah, I was so close to figuring this out on my own. Thank you so much for the explanation, it saved me many hours of banging my head against the wall!
@priyanshkashyap29936 ай бұрын
Bro you are great!
@CS_n00b5 ай бұрын
beautiful problem
@haydenthai9356 ай бұрын
Neetcode saved me from unemployment
@babai21966 ай бұрын
Wow you work at amazon
@IlaiShoshani6 ай бұрын
Nice Problem, I wonder if a similar question where we xor and sum the actual values of the nodes (the indexes) rather than the numbers in the "nums" array would have a more efficient solution (because all the values are sorted from 0 to n-1). Also, can't you get an O(n) solution easily by just doing XOR on all the values that will increase from it and saving the smallest difference caused by this action (or caused by not doing this action) in a variable, and if the final amount of XOR operations is odd subtracting that amount from the total sum?
@vladpovarna22136 ай бұрын
Nice explanation. It's really strange that this problem can be found without using the edges argument.
@andy2011go6 ай бұрын
My mentor!
@greedyfishbones3 ай бұрын
much appreciated
@ilyasramatullaev74166 ай бұрын
brilliant
@MohanRam-mq2pk6 ай бұрын
You deserve more reach❤ but kindly slow down a bit😅
@varunpalsingh38226 ай бұрын
thank you :-)
@alveste906 ай бұрын
I simply used a heap to achieve a time complexity of O(n) although my solution was slower than yours XD
@vaibhaviambarkar43596 ай бұрын
Please explain leetcode 3143 - asked in contest
@samavedammanikhantapraphul36616 ай бұрын
Hey, I was wondering if someone could explain the expected value for the following test case? nums = [78,43,92,97,95,94], k= 6 and edges = [[1,2],[3,0],[4,0],[0,1],[1,5]] I am getting the value as 499, as no edges can be selected to increase the sum of values in nums post operations.
@mohammedsuhail.s1926 ай бұрын
i have little bit confusion in the for loop why we can iterate through step if we do normally add the elements we get maximum that this and i experience this nums = [24,78,1,97,44] k = 6 edges = [[0,2],[1,2],[4,2],[3,4]] Use Testcase Output 262 Expected 260 could you explain this why we put for loop like this....
@EduarteBDO6 ай бұрын
I couldn't solve anything for this problem. But at least I did the O(n) solution: solution in rust impl Solution { pub fn maximum_value_sum(nums: Vec, k: i32, _edges: Vec) -> i64 { let mut sum = 0; let mut max_negative = i32::MIN; let mut min_positive = i32::MAX; let mut count_positives = 0; for num in nums { let delta = (num ^ k) - num; if delta.is_positive() { count_positives += 1; min_positive = min_positive.min(delta); } else { max_negative = max_negative.max(delta); } sum += if delta.is_positive() { num + delta } else { num } as i64; } if count_positives % 2 != 0 { if min_positive + max_negative > 0 { sum += max_negative as i64; } else { sum -= min_positive as i64; } } sum } }
@chien-yuyeh93866 ай бұрын
First🎉🎉
@NeetCodeIO6 ай бұрын
🥇
@OrphanedZombie6 ай бұрын
You didn't even use the edge parameter at all. Could that have been useful to make the approach more efficient?
@StellasAdi186 ай бұрын
At 12.45 mark, why are we picking 2 values at a time? Any logic behind that?
@NeetCodeIO6 ай бұрын
pretty much what i explained about how instead of choosing edges in this problem, we are choosing a path between two nodes. we must include both of those nodes, i.e. we have to choose 2 nodes at a time. its impossible to only XOR a single node.
@StellasAdi186 ай бұрын
@@NeetCodeIO yes sir. But let’s say array looks like [ 9,6,2,-8] The first 2 nodes may not be adjacent? But because in between for all other nodes due to double XOR won’t change value I guess.
@AkashSingh-il8dq6 ай бұрын
@@StellasAdi18 You may like to re view the video. Adjacency is not a question when we know having path is sufficient.
@AkashSingh-il8dq6 ай бұрын
edges array be like : Am i a joke to you ??? 😡 after left unused in the nlogn solution. 😅