- Source: Element distinctness problem
In computational complexity theory, the element distinctness problem or element uniqueness problem is the problem of determining whether all the elements of a list are distinct.
It is a well studied problem in many different models of computation. The problem may be solved by sorting the list and then checking if there are any consecutive equal elements; it may also be solved in linear expected time by a randomized algorithm that inserts each item into a hash table and compares only those elements that are placed in the same hash table cell.
Several lower bounds in computational complexity are proved by reducing the element distinctness problem to the problem in question, i.e., by demonstrating that the solution of the element uniqueness problem may be quickly found after solving the problem in question.
Decision tree complexity
The number of comparisons needed to solve the problem of size
n
{\displaystyle n}
, in a comparison-based model of computation such as a decision tree or algebraic decision tree, is
Θ
(
n
log
n
)
{\displaystyle \Theta (n\log n)}
. Here,
Θ
{\displaystyle \Theta }
invokes big theta notation, meaning that the problem can be solved in a number of comparisons proportional to
n
log
n
{\displaystyle n\log n}
(a linearithmic function) and that all solutions require this many comparisons. In these models of computation, the input numbers may not be used to index the computer's memory (as in the hash table solution) but may only be accessed by computing and comparing simple algebraic functions of their values. For these models, an algorithm based on comparison sort solves the problem within a constant factor of the best possible number of comparisons. The same lower bound applies as well to the expected number of comparisons in the randomized algebraic decision tree model.
Real RAM Complexity
If the elements in the problem are real numbers, the decision-tree lower bound extends to the real random-access machine model with an instruction set that includes addition, subtraction and multiplication of real numbers, as well as comparison and either division or remaindering ("floor"). It follows that the problem's complexity in this model is also
Θ
(
n
log
n
)
{\displaystyle \Theta (n\log n)}
. This RAM model covers more algorithms than the algebraic decision-tree model, as it encompasses algorithms that use indexing into tables. However, in this model all program steps are counted, not just decisions.
Turing Machine complexity
A single-tape deterministic Turing machine can solve the problem, for n elements of m ≥ log n bits each, in time O(n2m(m+2–log n)),
while on a nondeterministic machine the time complexity is O(nm(n + log m)).
Quantum complexity
Quantum algorithms can solve this problem faster, in
Θ
(
n
2
/
3
)
{\textstyle \Theta (n^{2/3})}
queries. The optimal algorithm is by Andris Ambainis. Yaoyun Shi first proved a tight lower bound when the size of the range is sufficiently large. Ambainis and Kutin independently (and via different proofs) extended his work to obtain the lower bound for all functions.
Generalization: Finding repeated elements
Elements that occur more than
n
/
k
{\displaystyle n/k}
times in a multiset of size
n
{\displaystyle n}
may be found by a comparison-based algorithm, the Misra–Gries heavy hitters algorithm, in time
O
(
n
log
k
)
{\displaystyle O(n\log k)}
. The element distinctness problem is a special case of this problem where
k
=
n
{\displaystyle k=n}
. This time is optimal under the decision tree model of computation.
See also
Collision problem
References
Kata Kunci Pencarian:
- Element distinctness problem
- Quantum algorithm
- Boyer–Moore majority vote algorithm
- Count-distinct problem
- BHT algorithm
- Quantum walk
- Discrete element method
- Element (mathematics)
- Chemical element
- HTML element