Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 215 Bytes

ordered_sets.md

File metadata and controls

3 lines (2 loc) · 215 Bytes

https://codeforces.com/blog/entry/11080 + Comments.

Can be used for kth order statistics on multiset. Technique discussed in comments. But only pitfall is: Can MLE. Use Fenwick Tree + Binary Search instead.