22. Maximum Meetings in One Room

The problem can be found at the following link: Question Link

My Approach

This is a greedy problem, to solve this problem:

  • Firstly I creating a structure meet to represent meeting details, including start time, end time, and index.

  • Then, I sort the meetings based on their finish times using a comparison function comp.

  • After sorting, I iterate through the sorted list of meetings, selecting each meeting only if its start time is strictly greater than the finish time of the previous meeting which I stored in last variable. This ensures that the selected meetings do not overlap, allowing us to manage as many meetings as possible while maximizing the non-overlapping intervals.

  • The final step involves returning the indices of the selected meetings.

Time and Auxiliary Space Complexity

  • Time Complexity: O(N log N) for sorting, where N is the number of meetings.

  • Auxiliary Space Complexity: O(N) for the v vector.

Code (C++)

Contribution and Support

For discussions, questions, or doubts related to this solution, please visit our discussion section. We welcome your input and aim to foster a collaborative learning environment.

If you find this solution helpful, consider supporting us by giving a ⭐ star to the getlost01/gfg-potd repository.

Last updated

Was this helpful?