I show applications of the greedy algorithm to acyclic graphs and matching patients based on a priority ordering.
In the matroid theory literature, the greedy algorithm finds the independent set in the matroid with the maximum weight. This type of algorithm was extended in (Roth et al., 2005) to find a matching among patients that is Pareto efficient and matches as many high-priority patients as possible. In this article, I give an example of how the greedy algorithm determines which acyclic part of the graph has the maximum aggregate weight and give an example to show how the greedy algorithm is extended into the priority algorithm.
Generally, there are many situations in which the greedy algorithm can be used to find some optimal solution. I provide examples of how this algorithm finds solutions to different problems in order to further understand how it might be generalized. Perhaps a way of generalizing how the greedy algorithm results in optimal solutions is to find similarities between the examples I provide. I do not want to make this article extremely complicated, so I avoid this route and only present the examples.
Before presenting an example of how the greedy algorithm is traditionally used, I will provide some important definitions.
A matroid is a pair , where is a finite set, and is a collection of subsets of , called the independent sets, satisfying the following properties.
Given a matroid with a weight function for each , the greedy algorithm finds an independent set of maximum weight.
Now consider the weighted graph as follows, where the vertices are labeled for all and the edges labeled . Let the weights be , and . A matroid that we can consider resulting from this graph consists of the edges of the graph and all acyclic subgraphs. We could also substitute acyclic subgraphs with cycles or combinations of edges up to some cardinality to obtain a matroid. While there are probably some applications of such matroids, I do not explore them further here.
The greedy algorithm orders the weights as and produces the acyclic graph , yielding a total weight of 8. There is no other acyclic subgraph that has a higher total weight.
The general idea behind the greedy algorithm is that it greedily selects the component that will contribute the most toward the goal as long as it fits the constraints of the problem. If the component does not fit the constraint, then it should be eliminated. The result of greedily selecting components in each iteration results in a global optimum.
As you will see in the section below, the priority mechanism is a greedy algorithm with a similar pattern. Although the greedy algorithm for acyclic graphs cannot be directly applied, an adjustment can be made. Instead of selecting one edge at a time to construct the independent set with the maximum weight, consider all maximal independent sets and filter these sets by considering the highest-weighted items. This process of filtration yields the independent set with the maximum weight.
In this section, I present the definition of the priority algorithm, which can be found in the paper (Roth et al., 2005), and I provide an example. But first, I review some important notation.
There are number of patients contained in the set . Pairs are mutually compatible if has a compatible donor for the patient of and has a compatible donor for the patient of , that is, and . A mutual compatibility matrix is defined as for any ,
A compatibility graph consisting of mutually compatible patients can be defined as , where is the set of edges connecting mutually compatible patients.
A matching of patients is a set that contains pairs of mutually compatible patients that are matched with one another and patients matched with themselves. Patient is matched with patient in the matching if and only if . In this model, cycles of matched patients are not considered. Hence, it cannot be the case that for some . Note that a matching can contain multiple elements, and patients who are matched with themselves are of the form (e.g. ). A priority ordering among the patients orders each patient from 1 being the highest priority to being the lowest. Each patient has a distinct integer representing their priority.
Given any compatibility graph and priority ordering among the patients, the priority algorithm finds a maximal matching.
Consider the following graph with vertices that represent patients and edges connecting two patients if and only if they are compatible with one another. A patient is matched with themselves only if he cannot be matched with any others. Suppose that the priorities of patients are represented as the weights of vertices. , and . Hence, patient 1 has the highest priority, and patient 5 has the lowest priority. The priority ordering is . This, along with the subsets of patients such that a matching contains these patients, defines a matroid. We can then apply the greedy algorithm to find the independent set of maximum weight. Note that if the independent sets were matchings of the compatibility graph instead of the patients contained by some matching, then this would not be a matroid.
In the first iteration, potential matchings that contain the patient with the highest priority, patient 1, are , , and . In the second iteration, potential matchings that contain patient 4 from the previous potential matching such that patient 4 is not matched with himself are and . This process continues until only the matching is left. This matching includes as many high-priority patients as possible. In the graph above, by the Gallai–Edmonds decomposition theorem, there will only be 1 patient matched with himself for any priority ordering. Given the specific priority ordering , the patient matched with himself (i.e. ) is the one with the lowest priority. However, it is generally not true that unmatched patients will always have lower priority than matched patients.