I recorded a 30-minute lecture about binary search. It should allow you to really understand it and stop guessing about +1 in random places. Enjoy.
https://www.youtube.com/watch?v=GU7DpgHINWQ
Consider watching with captions on and with x1.25 speed.
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3831 |
3 | Radewoosh | 3646 |
4 | jqdai0815 | 3620 |
4 | Benq | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | gamegame | 3386 |
10 | ksun48 | 3373 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
I recorded a 30-minute lecture about binary search. It should allow you to really understand it and stop guessing about +1 in random places. Enjoy.
https://www.youtube.com/watch?v=GU7DpgHINWQ
Consider watching with captions on and with x1.25 speed.
Name |
---|
ETA — Blogewoosh #8?
Thank you, but you didn't mention invariants.
I think I explained how to approach BS problems with the logic behind that. How would invariants help more?
Please tell how to approach for problems such as https://codeforces.net/contest/1169/problem/C
Code: 54682960
Observe that the problem is basically asking for the most number of times that a number has to change.
The problem asks to find the minimum number of operations, which is bounded from 1 to m. Thus, you can binary search for the minimum number of operations in O(log(m)) time.
That means that you can dedicate O(N) time to checking if it is possible to sort the array using <= a certain amount of operations.
Why you don't do analysis of all next educational rounds problems? They are cool to learn topics but sometimes they are hard to understand even with the editorial
I am just going to leave this here.
Hahaha
I didn't knew Errichto was that old, how many years is he in cp?
Can you make a similar video on topics like RMQ and Geometry as many people struggle in those topics?
Finally 1st.
In case of finding maximum in first increasing and then decreasing array if duplicate elements are present how to handle this?
You can't apply binary search in an array like $$$[1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1]$$$. You can't say which side (left or right) to choose when you ask about the middle element.
The only exception is that the maximum can be repeated multiple times — if you hit it at least once, you found a correct answer anyway.
Thanks.
Really great tutorial , I suggest making such tutorials in number theory topics like segmented sieve or search techniques like ternary search.
I have also implemented the code for the problem to find the maximum value in a mountain range . this is my code , can you kindly review my code if there is any bugs ?
https://ideone.com/5YgGqF
You should compare with adjacent elements, not with maximum so far. Plus your example sequence isn't increasing-decreasing.
Just solve Leetcode problems from links under the video.
Thank you Errichto for the great lecture.
However I'm concerned about binary search on double:
I think previous code won't stop, as when L and R get near the sqrt (which is 1000000000), numbers will be large so precision will be low and comparision (R — L > 1e-9) will never be false.
I prefer use L and Sz (size of the interval), instead of L and R as Sz will always get halved each time, so it's guaranteed to stop.
We can also limit the iterations by log of the number.
The thing is it's impossible to get precision $$$10^{-9}$$$ for that big numbers anyway. The precision of your code is for sure bigger than $$$10^{-9}$$$. In a problem from a contest, either values will be smaller or they will ask for relative or absolute error and then we should check that instead of just an absolute error.
Hi Errichto, When there will be a lecture on dp?
Can someone explain me where to use left+1 and Right -1 or not to use -1 or +1 . Watched the video but couldn't find any solution to this problem :) ;
You might want to read this blog, and you'll realize the meaning of the +1 or -1 according to the context.