Jump to content

Parameterized complexity

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Mellum (talk | contribs) at 00:12, 18 April 2004 (New.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

In computer science, fixed-parameter algorithms are an approach to attacking NP-hard problems. When trying to solve these problems exactly and deterministically, one has to deal with exponential running times; computational complexity theory indicates this is inevitable. Parameterized complexity theory accepts these exponential running times, but claims that not all “intractable” algorithms are equal, and some might even be feasible for practical applications.

The main idea is to consider parameters. Many problems have the following general form: given an object and a nonnegative integer , does have some property that depends on ? For instance, for Vertex Cover, the parameter can be the number of vertices in the cover. In many applications, for example when modelling error correction, one can assume the parameter to be “small” compared to the total input size. Then it is interesting to see whether we can find an algorithm which is exponential only in , and not in the input size.

In this way, parameterized complexity can be seen as two-dimensional complexity theory. This concept is formalized as follows:

A parameterized problem is a language , where is a finite alphabet. The second component is called the parameter of the problem.
A parameterized problem is fixed-parameter tractable if the question “?” can be decided in running time , where is an arbitrary function depending only on . The corresponding complexity class is called FPT.

For example there is an algorithm which solves Vertex Cover in time, where is the number of vertices and the size of the vertex cover. This proves that Vertex Cover is fixed-parameter tractable with respect to this parameter.