Editorial for TLE '15 P2 - Microwaves
Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.
Submitting an official solution before solving the problem yourself is a bannable offence.
First, sort all people by arrival time.
Realize that the person at the front of the line should never wait if a microwave can be chosen. Then, we notice that we can use a greedy solution: the person at the front of the line should choose the microwave that most recently ended, since we want
A multiset can be used to quickly choose the microwave for each person to use, but it is not mandatory.
Also, make sure that 64-bit integers are used.
Time Complexity:
Comments