Python enthusiasts might face limitations accessing certain libraries like sortedcontainers during contests such as the recent Round 918 (Div 4) on Codeforces. While the problem F in that contest could be efficiently solved using SortedList from sortedcontainers, unfortunately, the platform might not support this module. Consequently, Python users had to opt for alternative approaches such as Binary Indexed Trees (BIT) or merge sort to tackle the problem. It's worth noting that while sortedcontainers could have been a valuable asset in solving the problem, its absence might have prompted participants to explore other techniques available within the contest environment.
Helpful
I switch to C++ for problems that require a sorted set. In the end, this limitation makes me learn.
very helpfu bro
any alternative for sortedcontainers here?
Yeah. You are right. Why not create a template for sortedList and keep it with you?
Something like: https://mirror.codeforces.com/contest/1915/submission/239598054
I know it will make the code long, but it's just a template you can use. I hope that helps.
Yes, there are many alternatives, will use from next time.