My CP journey kzbin.info/www/bejne/iHjElGujm71omck
@ShyamSundar-fx8gp Жыл бұрын
Thanks for the fast video editorials solutions. Keep it up !!
@xyz956 Жыл бұрын
bro please put the time stamp for each question , btw your way of explaining is too awesome .
@adarshsinghparihar-iiitk3164 Жыл бұрын
bro, please keep uploading these videos for every upcoming codeforces contests, your way of explaining is awesooooome❣❣
@083_tusharsachdeva6 Жыл бұрын
genuine explaination, thanks
@aryangoyal9383 Жыл бұрын
nice one brother , can u tell how to increase my thought process, this was my 5th contest , and this felt somewhat easy, i could do 5 problems , from where i should topis as i have only general knowledge of c++ and i am doing questions with basic syntax; how to learn new things and do questions more fast
@mayankshakya9200 Жыл бұрын
Wich college?
@aryangoyal9383 Жыл бұрын
iit delhi @@mayankshakya9200
@manitianajay45 Жыл бұрын
Tough problems ko sochne ke lie lamba time do. Baaki topics abhi binary search Karo.
@vedantagrawal3654 Жыл бұрын
thank you so much, you are an inspiration
@big-bull4126 Жыл бұрын
WHat is the difference between rated and unrated contests?? Im new to codeforces i gave a contest but it is showing 'unrated' so that means my rating wont increase ?? i want to increase my rating , how should i give contests , rated or unrated ?? and how to select rated ones ?
@manitianajay45 Жыл бұрын
Abhi rating update nahi hue hogi I guess , ya phir kuchh hota div3 main trusted participants karke wo hoga, ab agla div2 de dena wo rated for all hoga.
@big-bull4126 Жыл бұрын
@@manitianajay45 ha bhai ratings hogyi update
@ushrangouhar952 Жыл бұрын
I have one doubt in problem E. For type1 query, we are updating the final xor value i.e xr but why we are not updating the prefix xors also while processing the query. Dry running the testcases verifies the algorithm but I have doubt in how the solution is working. Why we dont' need to update the prefix xors ?
@manitianajay45 Жыл бұрын
In prefix I have stored the xor of all the values between 1 to i and it means prefix does not depend of s, so it will not affect that.
@ushrangouhar952 Жыл бұрын
@@manitianajay45 Oh got it. Thanks !!!
@loudcapricorn5513 Жыл бұрын
Easy explanation for E problem 💯. Also please suggest some Resources/Videos for Segment Trees.
@vikashtiwari2175 Жыл бұрын
Watch his journey video he shared everything , he has pinned the link in comment section
@manitianajay45 Жыл бұрын
Codeforces EDU course.
@loudcapricorn5513 Жыл бұрын
@@manitianajay45 Okk. Thanks.
@study-yd6es Жыл бұрын
Amazing Work bro
@Aryannnn09 Жыл бұрын
bro can you record a live contest solving and upload it after the contest
@manitianajay45 Жыл бұрын
I can but it will take time to upload it because video length will be 2 hrs and here in my Village internet it too slow and it took almost 1 hr in uploading 40 min video and I tried live stream(can public after contest) but that's not working well due to internet , but will try virtual contest or contest next time.
@Aryannnn09 Жыл бұрын
@@manitianajay45 would love to see that
@gopal_bhakt_9 Жыл бұрын
Superb bro🎉
@sri7340 Жыл бұрын
achha explanation
@YasinArafat-hp4wr Жыл бұрын
great brother go ahead
@aviralarpan7350 Жыл бұрын
OP
@shreyanshjain1595 Жыл бұрын
nice explanation bro
@JuswanthTeeb Жыл бұрын
Please consider explaining in English. Thanks!
@manitianajay45 Жыл бұрын
agar english aati too phir ..... apple meaning in hindi google pe search nahi karna padta bhai😅😅
@amankumar_1325 Жыл бұрын
Sir, I am unable to solve the following problem: Given an array of numbers , perform the following operations: pick two adjacent positive numbers a[i] and a[i+1] and replace the two numbers with either(a[i]%a[i+1]) or (a[i+1]%a[i]). Thus after each operation array's length decreases by one. Task is to find minimum possible length of array that can be achieved by performing the operation any number of times. For example for {1,1,2,3} answer would be 1. Please help me solving the question. By the way nice explanation.
@manitianajay45 Жыл бұрын
I guess tha answer will be equal to no of 0's in array and if the no of 0's is 0 then ans will be 1.