You are given a list of events. Each event is represented as a triple of positive integers: (start, end, weight), where start < end. The list may come in an arbitrary order.
When events overlap, the event with the higher weight takes precedence during the overlapping period. If two overlapping events have the same weight, the event that starts earlier takes precedence.
Your task is to write a function that processes this list and returns a new list of non-overlapping intervals. Each interval in the output should be represented as (start, end, weight), indicating that the interval [start, end) is covered by the event with the specified weight.
The function should:
For example, given the following events:
The expected output would be something like:
Note: The above example is illustrative. Your solution should work for any valid list of events.
Your implementation can be in any programming language of your choice.