2897. Apply Operations on Array to Maximize Sum of Squares | Weekly Leetcode 366

  Рет қаралды 1,493

codingMohan

codingMohan

Күн бұрын

Пікірлер: 27
@Abbas.aktari
@Abbas.aktari Жыл бұрын
Exactly same question came in sprinklr OA last week
@miketsubasa3611
@miketsubasa3611 11 ай бұрын
Step by step explanation is greatly helpful
@xtrahue
@xtrahue Жыл бұрын
hats off man...kya socha hai.....and really concise code.Keep it up.
@rajvaghela4378
@rajvaghela4378 Жыл бұрын
Really nice efforts in the video. I got each and every concept you tried to explain. Thank you!!
@prakhargarg4166
@prakhargarg4166 4 ай бұрын
Best explanation
@chandrachurmukherjeejucse5816
@chandrachurmukherjeejucse5816 8 ай бұрын
Really great lecture sir. Subscribed your channel 🚀
@16avikasgupta70
@16avikasgupta70 Жыл бұрын
Thanks bhai for the explaination
@16avikasgupta70
@16avikasgupta70 Жыл бұрын
Bhai also mention some similar problems for practise in description
@sujayshanbhag2055
@sujayshanbhag2055 Жыл бұрын
Arey bhai aap itna jaldi kaise video bana lete ho? 🔥🔥🔥🔥
@harshmishra061
@harshmishra061 Жыл бұрын
please make video for third one also
@ketansarode17
@ketansarode17 Жыл бұрын
+1
@AbhinavKumar-ee5wl
@AbhinavKumar-ee5wl Жыл бұрын
+1
@vinayjangra1401
@vinayjangra1401 Жыл бұрын
+1
@akashsahu6079
@akashsahu6079 Жыл бұрын
+1
@codingmohan
@codingmohan Жыл бұрын
Sorry for the delay. My laptop hanged badly and took more time then expected to fix. Here you go - kzbin.info/www/bejne/e3yqYpJrraeBf8k
@teqarine5752
@teqarine5752 Жыл бұрын
why have we taken cnt of size 31 and not of 32? aren't there 32 bits in an integer?
@codingmohan
@codingmohan Жыл бұрын
Yes integers are 32 bits but the maximum value given in the problem is 10^9 which can fit in 30 bits easily
@teqarine5752
@teqarine5752 Жыл бұрын
@@codingmohan so we can also make the cnt size 32 it'll work well?
@codingmohan
@codingmohan Жыл бұрын
Yes. But 1
@teqarine5752
@teqarine5752 Жыл бұрын
@@codingmohan ohh okay got it Thank you very much
@dayashankarlakhotia4943
@dayashankarlakhotia4943 Жыл бұрын
class Solution { public int maxSum(List nums,int k){ long mod=1000000007; long ans=0; int cnt[]=new int [32]; for(int i=0;i
@saitejachebolu4798
@saitejachebolu4798 11 ай бұрын
I didn't understand what you u are doing can you tell me the intuition again
@avirajkumar2619
@avirajkumar2619 Жыл бұрын
Only 360p quality
@codingmohan
@codingmohan Жыл бұрын
KZbin takes some time to process it in higher resolution. Will be available in all resolutions in ~10 mins.
@vinayjangra1401
@vinayjangra1401 Жыл бұрын
903 out of 918 test cases passed ,please help class Solution { public int maxSum(List nums, int k) { int mod = 1000000007; int[] ans = new int[k]; for(int i = 0; i < 32; i++) { //check jth bit int count = 0; int mask = 1 = 0 && count > 0; x--, count--) { //set ith bit in each number starting from end till we have count int mask2 = 1
@chandrachurmukherjeejucse5816
@chandrachurmukherjeejucse5816 8 ай бұрын
sum = (sum + (1ll * n * n) % mod) % mod; try doing this. change 1ll to similar thing in java
@chandrachurmukherjeejucse5816
@chandrachurmukherjeejucse5816 8 ай бұрын
class Solution { public: int maxSum(vector& nums, int k) { vector setBitCount(32, 0); int mod = 1e9 + 7; for(auto &it: nums) { for(int i = 0; i < 30; i++) { setBitCount[i] += ((it >> i) & 1); } } long long res = 0; for(int i = 0; i < k; i++) { int curr = 0; for(int j = 0; j < 32; j++) { if(setBitCount[j]) { setBitCount[j]--; curr |= (1
REAL MAN 🤣💪🏻
00:35
Kan Andrey
Рет қаралды 32 МЛН
amazing#devil #lilith #funny #shorts
00:15
Devil Lilith
Рет қаралды 18 МЛН
龟兔赛跑:好可爱的小乌龟#short #angel #clown
01:00
Super Beauty team
Рет қаралды 134 МЛН
Perfect Pitch Challenge? Easy! 🎤😎| Free Fire Official
00:13
Garena Free Fire Global
Рет қаралды 71 МЛН
2896. Apply Operations on Array to Maximize Sum of Squares (Leetcode Hard)
13:11
Programming Live with Larry
Рет қаралды 414
Count Number of Possible Root Nodes | Biweekly Contest 99
34:05
codingMohan
Рет қаралды 1,6 М.
Space-Filling Aether Theory Makes Comeback
8:24
Sabine Hossenfelder
Рет қаралды 230 М.
Winning Facebook (Meta) Hacker Cup Qual Round 2022?
53:55
Neal Wu
Рет қаралды 2,5 МЛН
Leetcode 2607. Make K-Subarray Sums Equal
21:04
Algorithms Casts
Рет қаралды 925
This Isn't Minecraft...
18:33
FundyLIVE
Рет қаралды 59 М.
3276. Select Cells in Grid With Maximum Score | Weekly Leetcode 413
36:39
REAL MAN 🤣💪🏻
00:35
Kan Andrey
Рет қаралды 32 МЛН