Enumeration algorithm

From HandWiki

In computer science, an enumeration algorithm is an algorithm that enumerates the answers to a computational problem. Formally, such an algorithm applies to problems that take an input and produce a list of solutions, similarly to function problems. For each input, the enumeration algorithm must produce the list of all solutions, without duplicates, and then halt. The performance of an enumeration algorithm is measured in terms of the time required to produce the solutions, either in terms of the total time required to produce all solutions, or in terms of the maximal delay between two consecutive solutions and in terms of a preprocessing time, counted as the time before outputting the first solution. This complexity can be expressed in terms of the size of the input, the size of each individual output, or the total size of the set of all outputs, similarly to what is done with output-sensitive algorithms.

Formal definitions

An enumeration problem [math]\displaystyle{ P }[/math] is defined as a relation [math]\displaystyle{ R }[/math] over strings of an arbitrary alphabet [math]\displaystyle{ \Sigma }[/math]:

[math]\displaystyle{ R \subseteq \Sigma^* \times \Sigma^* }[/math]

An algorithm solves [math]\displaystyle{ P }[/math] if for every input [math]\displaystyle{ x }[/math] the algorithm produces the (possibly infinite) sequence [math]\displaystyle{ y }[/math] such that [math]\displaystyle{ y }[/math] has no duplicate and [math]\displaystyle{ z\in y }[/math] if and only if [math]\displaystyle{ (x,z)\in R }[/math]. The algorithm should halt if the sequence [math]\displaystyle{ y }[/math] is finite.

Common complexity classes

Enumeration problems have been studied in the context of computational complexity theory, and several complexity classes have been introduced for such problems.

A very general such class is EnumP,[1] the class of problems for which the correctness of a possible output can be checked in polynomial time in the input and output. Formally, for such a problem, there must exist an algorithm A which takes as input the problem input x, the candidate output y, and solves the decision problem of whether y is a correct output for the input x, in polynomial time in x and y. For instance, this class contains all problems that amount to enumerating the witnesses of a problem in the class NP.

Other classes that have been defined include the following. In the case of problems that are also in EnumP, these problems are ordered from least to most specific:

  • Output polynomial, the class of problems whose complete output can be computed in polynomial time.
  • Incremental polynomial time, the class of problems where, for all i, the i-th output can be produced in polynomial time in the input size and in the number i.
  • Polynomial delay, the class of problems where the delay between two consecutive outputs is polynomial in the input (and independent from the output).
  • Strongly polynomial delay, the class of problems where the delay before each output is polynomial in the size of this specific output (and independent from the input or from the other outputs). The preprocessing is generally assumed to be polynomial.
  • Constant delay, the class of problems where the delay before each output is constant, i.e., independent from the input and output. The preprocessing phase is generally assumed to be polynomial in the input.

Common techniques

  • Backtracking: The simplest way to enumerate all solutions is by systematically exploring the space of possible results (partitioning it at each successive step).[2] However, performing this may not give good guarantees on the delay, i.e., a backtracking algorithm may spend a long time exploring parts of the space of possible results that do not give rise to a full solution.
  • Flashlight search: This technique improves on backtracking by exploring the space of all possible solutions but solving at each step the problem of whether the current partial solution can be extended to a partial solution.[1] If the answer is no, then the algorithm can immediately backtrack and avoid wasting time, which makes it easier to show guarantees on the delay between any two complete solutions. In particular, this technique applies well to self-reducible problems.
  • Closure under set operations: If we wish to enumerate the disjoint union of two sets, then we can solve the problem by enumerating the first set and then the second set. If the union is non disjoint but the sets can be enumerated in sorted order, then the enumeration can be performed in parallel on both sets while eliminating duplicates on the fly. If the union is not disjoint and both sets are not sorted then duplicates can be eliminated at the expense of a higher memory usage, e.g., using a hash table. Likewise, the cartesian product of two sets can be enumerated efficiently by enumerating one set and joining each result with all results obtained when enumerating the second step.

Examples of enumeration problems

Connection to computability theory

The notion of enumeration algorithms is also used in the field of computability theory to define some high complexity classes such as RE, the class of all recursively enumerable problems. This is the class of sets for which there exist an enumeration algorithm that will produce all elements of the set: the algorithm may run forever if the set is infinite, but each solution must be produced by the algorithm after a finite time.

References

  1. 1.0 1.1 Strozecki, Yann; Mary, Arnaud (2019). "Efficient Enumeration of Solutions Produced by Closure Operations". Discrete Mathematics & Theoretical Computer Science 21 (3). doi:10.23638/DMTCS-21-3-22. https://dmtcs.episciences.org/5549. 
  2. Read, Ronald C.; Tarjan, Robert E. (1975). "Bounds on Backtrack Algorithms for Listing Cycles, Paths, and Spanning Trees". Networks 5 (3): 237–252. doi:10.1002/net.1975.5.3.237. https://onlinelibrary.wiley.com/doi/10.1002/net.1975.5.3.237. 
  3. Hagen, Matthias (2008). Algorithmic and Computational Complexity Issues of MONET. Göttingen: Cuvillier. ISBN 9783736928268. https://cuvillier.de/de/shop/publications/1237. 
  4. Bagan, Guillaume; Durand, Arnaud; Grandjean, Etienne (2007). Duparc, Jacques; Henzinger, Thomas A.. eds. "On Acyclic Conjunctive Queries and Constant Delay Enumeration" (in en). Computer Science Logic. Lecture Notes in Computer Science (Springer Berlin Heidelberg) 4646: 208–222. doi:10.1007/978-3-540-74915-8_18. ISBN 9783540749158. 
  5. Marquis, P.; Darwiche, A. (2002). "A Knowledge Compilation Map" (in en). Journal of Artificial Intelligence Research 17: 229–264. doi:10.1613/jair.989.