Greedy Algorithm and the Priority Mechanism

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.

Application of the Greedy Algorithm to Acyclic Graphs

Before presenting an example of how the greedy algorithm is traditionally used, I will provide some important definitions.

Definition. Matroid\textbf{Definition. Matroid}
A matroid is a pair M=(E,J)M=(E, \mathcal{J}), where EE is a finite set, and J2E\mathcal{J} \subseteq 2^E is a collection of subsets of EE, called the independent sets, satisfying the following properties.

  1. J\mathcal{J} contains at least one set.
  2. If J1JJ_1 \in \mathcal{J} and JJ1J \subseteq J_1, then JJJ \in \mathcal{J}.
  3. If J1,J2JJ_1, J_2 \in \mathcal{J} and J1>J2\left|J_1\right|>\left|J_2\right|, there exists an element eJ1J2e \in J_1 \setminus J_2 such that J2{e}JJ_2 \cup\{e\} \in \mathcal{J}.

Algorithm. The Greedy Algorithm For Acyclic Graphs\textbf{Algorithm. The Greedy Algorithm For Acyclic Graphs}
Given a matroid M=(E,J)M=(E, \mathcal{J}) with a weight function w(e)w(e) for each eEe \in E, the greedy algorithm finds an independent set JJJ \in \mathcal{J} of maximum weight.

  1. Initialize J=J=\emptyset, the set containing elements with the maximum weight.
  2. Order the elements of EE so that w(ei)w(ei+1)w\left(e_i\right) \geq w\left(e_{i+1}\right).
  3. At iteration ii, if {ei}JJ\left\{e_i\right\} \cup J \in \mathcal{J}, append {ei}\left\{e_i\right\} to JJ and consider the next iteration.

Now consider the weighted graph as follows, where the vertices are labeled viv_i for all i=1,,4i=1, \ldots, 4 and the edges labeled a,,da, \ldots, d. Let the weights be wa:=w(a)=2,wb:=w(b)=3,wc:=w(c)=1w_a:=w(a)=2, w_b:=w(b)=3, w_c:=w(c)=1, and wd:=w(d)=4w_d:=w(d)=4. A matroid that we can consider resulting from this graph consists of the edges of the graph {a,,d}\{a, \ldots, d\} 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 (wd,wb,wa,wc)\left(w_d, w_b, w_a, w_c\right) and produces the acyclic graph c,d,bc, d, b, 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.

Application of the Greedy Algorithm to Match High-Priority Patients

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 nn number of patients contained in the set N={1,,n}N=\{1, \ldots, n\}. Pairs i,ji, j are mutually compatible if jj has a compatible donor for the patient of ii and ii has a compatible donor for the patient of jj, that is, kjKik_j \in K_i and kiKjk_i \in K_j. A mutual compatibility matrix R=[ri,j]i,jNR=\left[r_{i, j}\right]_{i, j \in N} is defined as for any i,jNi, j \in N,

ri,j={1 if i and j are mutually compatible 0 otherwise . r_{i, j}=\left\{\begin{array}{ll}1 & \text { if } i \text { and } j \text { are mutually compatible } \\ 0 & \text { otherwise }\end{array}.\right.

A compatibility graph consisting of mutually compatible patients can be defined as G=(N,E)G=(N, E), where EE is the set of edges connecting mutually compatible patients.

A matching of patients μ\mu is a set that contains pairs of mutually compatible patients that are matched with one another and patients matched with themselves. Patient piNp_i \in N is matched with patient pjNp_j \in N in the matching μ\mu if and only if μ={pipj}\mu=\left\{p_i p_j\right\}. In this model, cycles of matched patients are not considered. Hence, it cannot be the case that μ={pipjpk}\mu=\left\{p_i p_j p_k\right\} for some pi,pj,pkNp_i, p_j, p_k \in N. Note that a matching can contain multiple elements, and patients who are matched with themselves are of the form pipip_i p_i (e.g. μ={p1p2,p3p4,p5p5}\mu=\left\{p_1 p_2, p_3 p_4, p_5 p_5\right\}). A priority ordering (p1,,pn)\left(p_1, \ldots, p_n\right) among the patients orders each patient pip_i from 1 being the highest priority to nn being the lowest. Each patient has a distinct integer representing their priority.

Algorithm. The Priority Mechanism\textbf{Algorithm. The Priority Mechanism}
Given any compatibility graph GG and priority ordering among the patients, the priority algorithm finds a maximal matching.

  1. Let E0\mathcal{E}^0 be the set of maximal matchings
  2. For priority ordering (p1,,pi,,pn)\left(p_1, \ldots, p_i, \ldots, p_n\right) and 1in1 \leq i \leq n, let EiEi1\mathcal{E}^i \subseteq \mathcal{E}^{i-1} be defined as

Ei={{μEi1pipiμ} if μEi1 s.t. pipiμEi1 otherwise . \mathcal{E}^i=\left\{\begin{array}{ll} \left\{\mu \in \mathcal{E}^{i-1} \mid p_i p_i \notin \mu\right\} & \text { if } \exists \mu \in \mathcal{E}^{i-1} \text { s.t. } p_i p_i \notin \mu \\ \mathcal{E}^{i-1} & \text { otherwise } \end{array}.\right.

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. w(v1)=1,w(v2)=4,w(v3)=3,w(v4)=2w\left(v_1\right)=1, w\left(v_2\right)=4, w\left(v_3\right)=3, w\left(v_4\right)=2, and w(v5)=5w\left(v_5\right)=5. Hence, patient 1 has the highest priority, and patient 5 has the lowest priority. The priority ordering is (1,4,3,2,5)(1,4,3,2,5). 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 {13,24,55}\{13,24,55\}, {13,25,44}\{13,25,44\}, and {14,25,33}\{14,25,33\}. 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 {14,25,33}\{14,25,33\} and {13,24,55}\{13,24,55\}. This process continues until only the matching {13,24,55}\{13,24,55\} 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 (1,4,3,2,5)(1,4,3,2,5), the patient matched with himself (i.e. 5555) is the one with the lowest priority. However, it is generally not true that unmatched patients will always have lower priority than matched patients.

References

  1. Roth, A. E., Sönmez, T., & Ünver, M. U. (2005). Pairwise kidney exchange. Journal of Economic Theory, 125(2), 151–188.