You are given an array of meeting requests. Each meeting is represented as a tuple or object with three properties: start time, end time, and priority (a numerical value). Your task is to write a function that selects a subset of these meetings such that no two meetings overlap and the sum of the priorities of the selected meetings is maximized. In addition to computing the maximum total priority, your function should return the list of meetings that make up this optimum solution.
An array of meetings, where each meeting is represented as a tuple or an object, e.g., (start_time, end_time, priority)
. For example:
[(1, 3, 5), (2, 5, 6), (4, 6, 5), (6, 8, 4)]
You can assume that the start time and end time are integers and that start time < end time
for any meeting.
Given the input:
meetings = [(1, 3, 5), (2, 5, 6), (4, 6, 5), (6, 8, 4)]
One possible valid output would be:
14
[(1, 3, 5), (4, 6, 5), (6, 8, 4)]
Design and implement your solution while ensuring clarity, correctness, and efficiency.