Maximum Weight Independent Set Problem

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

External

Internal

Overview

This article introduces the maximum weight independent set of a path graph and provides a dynamic programming algorithm to solve it.

The Maximum Weight Independent Set Problem

Given a path graph G=(V, E) where V consists in a set of n vertices v0, v1 ... vn-1 that form a path, each of vertices with its own positive weight wi, compute a maximum weight independent set of the graph. An independent set is a set of vertices in which none is adjacent to the other.

A Dynamic Programming Approach

The key to finding a dynamic programming algorithm is to identify a small set of subproblems whose solution can be computed using the previous subproblems' solutions.

In this case, we start with the observation that for the full n vertex path graph G {v1, .... vn}, we have two situations:

1. vn belongs to the solution. In this case, vn-1 does not belong to the solution, by the properties of an independent set. The maximum weight of the independent set for the graph G is W = wn + W'', where W'' is the maximum weight independent set for the n-2 vertices path graph {v1, .... vn-2}.

2. vn does not belong to the solution, and in this case the solution consists in the maximum weight independent set of the graph {v1, .... vn-1}, annotated as W'.

There is no other possibility, so if we compute recursively W' and W'' we can decide, after the computation is completed, which one is larger.

This idea might suggest a recursive solution of the algorithm, but solution is inefficient, the running time is exponential. The inefficiency of the solution comes from the fact that both recurrences compute redundantly almost the same thing.

Dynamic Programming Algorithm

The actual solution involves computing the maximum weights W of the independent set starting with the vertex v1 and storing the intermediate solutions in the array W:

initialize an n+1 element W array
W[0] = 0
W[1] = w1
for i = 2 to n:
  W[i] = max(W[i-1], w[i] + W[i-2])

After computing the subgraph weights and the maximum weight in W[n], the array containing the maximum weight for subgraphs can be walked back to display the actual vertices that are part of the independent set. TODO: provide pseudocode algorithm, working solution in playground.

Playground Implementation

https://github.com/ovidiuf/playground/blob/master/learning/stanford-algorithms-specialization/13-dynamic-programming-max-weight-independent-set/src/main/java/playground/stanford/mwis/Main.java