Here, a local search algorithm for multiway cut
Sometimes, local search algorithms can give good approximations to NP-hard problems. In the Max-Cutproblem, we have a graph and want to find a cut with as many edges crossing as possible. One local search algorithm is as follows: Start with any cut, and while some vertex v in S has more neighbors in S than T, we move vertex from(we do the same for any vertex with more neighbors in . Note that any time we move a vertex across the cut, the number of edges crossing the cut increases.
Input: graph
Output: A set
Initialize arbitrarily ,
whilewith more edges to the same side than across do ;
move to the other side;
end while;
return .
there are (this is typical in local search algorithms). We can bound this through some very simple observations.
1. Initially
2. In every iteration, increases by at least one, and
3. is always at most
These facts in the graph clearly imply that the number of iterations is at most , and thus the total running time is polynomial. To prove the next theorem about the approximation ratio, we will do something which is very common when analyzing local search algorithms. We will not reason directly about the solution which the algorithm outputs, but will instead reason about an arbitrary local optimum. Since the algorithm outputs a local optimum, any bound we can prove which holds for all local optimum will hold for the output of the algorithm.
Hence, a local search algorithm for multiway cut is proved.