3SUM': Difference between revisions

From Algorithm Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 12: Line 12:
== Parameters ==  
== Parameters ==  


n: number of integers in each set
$n$: number of integers in each set


== Table of Algorithms ==  
== Table of Algorithms ==  

Latest revision as of 09:28, 10 April 2023

Description

Given three sets of integers $A, B, C$ of total size $n$, are there $a\in A, b\in B, c\in C$ such that $a + b = c$?

Related Problems

Generalizations: 3SUM

Related: Real 3SUM, All-Integers 3SUM

Parameters

$n$: number of integers in each set

Table of Algorithms

Currently no algorithms in our database for the given problem.

Reductions TO Problem

Problem Implication Year Citation Reduction
3SUM if: to-time $N^{2-\epsilon}$ for some $\epsilon > {0}$
then: from-time: $N^{2-\epsilon'}$ for some $\epsilon' > {0}$
1995 https://doi-org.ezproxy.canberra.edu.au/10.1016/0925-7721(95)00022-2 link
GeomBase if: to-time $N^{2-\epsilon}$ for some $\epsilon > {0}$
then: from-time: $N^{2-\epsilon'}$ for some $\epsilon' > {0}$
1995 https://doi-org.ezproxy.canberra.edu.au/10.1016/0925-7721(95)00022-2 link
Static Dihedral Rotation Queries if: to-time $N^{2-\epsilon}$ for some $\epsilon > {0}$
then: from-time: $N^{2-\epsilon'}$ for some $\epsilon' > {0}$
2003 https://doi-org.ezproxy.canberra.edu.au/10.1016/S0925-7721(02)00156-6 link

Reductions FROM Problem

Problem Implication Year Citation Reduction
3SUM if: to-time $N^{2-\epsilon}$ for some $\epsilon > {0}$
then: from-time: $N^{2-\epsilon'}$ for some $\epsilon' > {0}$
1995 https://doi-org.ezproxy.canberra.edu.au/10.1016/0925-7721(95)00022-2 link
GeomBase if: to-time $N^{2-\epsilon}$ for some $\epsilon > {0}$
then: from-time: $N^{2-\epsilon'}$ for some $\epsilon' > {0}$
1995 https://doi-org.ezproxy.canberra.edu.au/10.1016/0925-7721(95)00022-2 link