Problem statement: SORTING
A common solution for this problem is to use Persistent Segment tree and Binary Search, which runs in O(n log n)
. However, as I was reading the editorial for some extra insights, I encountered a solution that doesn't involve any advanced data structure but a Doubly Linked List, and (according to the author of the solution) runs in O(n)
. I spent an hour examining the solution but still haven't managed to understand it throughly. So far, I've understood the two functions to delete elements from the linked list, but couldn't how T[b]
and T[e]
work. Can someone please help me out ?