Question 20
Based on the above data, answer the given subquestions.
We define an overlap graph associated with as follows: is a complete directed graph (that is, for every there are edges and ), where , and the weight of an edge is .
Let us say that an edge dominates another edge , if they share head or tail (that is, or ) and .
In terms of the overlap graph, the greedy algorithm goes through a list of all edges in in the nonincreasing order of their overlap and includes some of them in a solution. Specifically, the greedy algorithm does not include another edge if and only if
R1. it is dominated by an already chosen edge,
R2. it is not dominated but it would form a cycle.
What is the structure of the set of edges returned by the greedy algorithm?
A Hamiltonian cycle, i.e, a cycle that visits every vertex in the graph exactly once
A Hamiltonian path, i.e, a path that visits every vertex in the graph exactly once
A regular graph, i.e, a graph where every vertex has the same degree