Английская Википедия:3-partition problem

Материал из Онлайн справочника
Перейти к навигацииПерейти к поиску

The 3-partition problem is a strongly NP-complete problem in computer science. The problem is to decide whether a given multiset of integers can be partitioned into triplets that all have the same sum. More precisely:

  • Input: a multiset S containing n positive integer elements.
  • Conditions: S must be partitionable into m triplets, S1, S2, …, Sm, where n = 3m. These triplets partition S in the sense that they are disjoint and they cover S. The target value T is computed by taking the sum of all elements in S, then divided by m.
  • Output: whether or not there exists a partition of S such that, for all triplets, the sum of the elements in each triplet equals T.

The 3-partition problem remains strongly NP-complete under the restriction that every integer in S is strictly between T/4 and T/2.

Example

  1. The set <math>S = \{ 20, 23, 25, 30, 49, 45, 27, 30, 30, 40, 22, 19 \}</math> can be partitioned into the four sets <math>\{ 20, 25, 45 \}, \{ 23, 27, 40 \}, \{ 49, 22, 19 \} , \{ 30, 30, 30\}</math>, each of which sums to T = 90.
  2. The set <math>S = \{1, 2, 5, 6, 7, 9\}</math> can be partitioned into the two sets <math>\{1, 5, 9\}, \{2, 6, 7\}</math> each of which sum to T = 15.
  3. (every integer in S is strictly between T/4 and T/2): <math>S = \{4,5,5,5,5,6\}</math>, thus m=2, and T=15. There is feasible 3-partition <math>\{4,5,6\}, \{5,5,5\}</math>.
  4. (every integer in S is strictly between T/4 and T/2): <math>S = \{4,4,4,6,6,6\}</math>, thus m=2, and T=15. There is no feasible solution.

Strong NP-completeness

The 3-partition problem remains NP-complete even when the integers in S are bounded above by a polynomial in n. In other words, the problem remains NP-complete even when representing the numbers in the input instance in unary. i.e., 3-partition is NP-complete in the strong sense or strongly NP-complete. This property, and 3-partition in general, is useful in many reductions where numbers are naturally represented in unary.

3-Partition vs Partition

The 3-partition problem is similar to the partition problem, in which the goal is to partition S into two subsets with equal sum, and the multiway number partitioning, in which the goal is to partition S into k subsets with equal sum, where k is a fixed parameter. In 3-Partition the goal is to partition S into m = n/3 subsets, not just a fixed number of subsets, with equal sum. Partition is "easier" than 3-Partition: while 3-Partition is strongly NP-hard, Partition is only weakly NP-hard - it is hard only when the numbers are encoded in non-unary system, and have value exponential in n. When the values are polynomial in n, Partition can be solved in polynomial time using the pseudopolynomial time number partitioning algorithm.

Variants

In the unrestricted-input variant, the inputs can be arbitrary integers; in the restricted-input variant, the inputs must be in (T/4, T/2). The restricted version is as hard as the unrestricted version: given an instance Su of the unrestricted variant, construct a new instance of the restricted version Шаблон:Math}. Every solution of Su corresponds to a solution of Sr but with a sum of 7Шаблон:Hsp instead of T, and every element of Sr is in Шаблон:Nowrap which is contained in Шаблон:Nowrap.

In the distinct-input variant, the inputs must be in (T/4, T/2), and in addition, they must all be distinct integers. It, too, is as hard as the unrestricted version.[1]

In the unrestricted-output variant, the m output subsets can be of arbitrary size - not necessarily 3 (but they still need to have the same sum T). The restricted-output variant can be reduced to the unrestricted-variant: given an instance Su of the restricted variant, construct a new instance of the unrestricted variant Шаблон:Math}, with target sum 7Шаблон:Hsp. Every solution of Su naturally corresponds to a solution of Sr. In every solution of Sr, since the target sum is 7Шаблон:Hsp and each element is in Шаблон:Nowrap, there must be exactly 3 elements per set, so it corresponds to a solution of Su.

The 4-partition problem is a variant in which S contains n = 4Шаблон:Hsp integers, the sum of all integers is Шаблон:Tmath, and the goal is to partition it into m quadruples, all with a sum of T. It can be assumed that each integer is strictly between T/5 and T/3.

The ABC-partition problem is a variant in which, instead of a set S with 3Шаблон:Hsp integers, there are three sets A, B, C with m integers in each. The sum of numbers in all sets is Шаблон:Tmath. The goal is to construct m triplets, each of which contains one element from A, one from B and one from C, such that the sum of each triplet is T. [2] This problem can be reduced to 3-partition as follows. Construct a set S containing the numbers Шаблон:Gaps for each Шаблон:Tmath; Шаблон:Gaps for each Шаблон:Tmath; and Шаблон:Gaps for each Шаблон:Tmath. Every solution of the ABC-partition instance induces a solution of the 3-partition instance with sum <math>1000(a+b+c)+111 = 1000T+111</math>. Conversely, in every solution of the 3-partition instance, all triplet-sums must have the same hundreds, tens and units digits, which means that they must have exactly 1 in each of these digits. Therefore, each triplet must have exactly one number of the form Шаблон:Gaps, one Шаблон:Gaps and one Шаблон:Gaps. Hence, it induces a solution to the ABC-partition instance.

Proofs

Garey and Johnson (1975) originally proved 3-Partition to be NP-complete, by a reduction from 3-dimensional matching.[3] The classic reference by Garey and Johnson (1979) describes an NP-completeness proof, reducing from 3-dimensional matching to 4-partition to 3-partition.[4]

Applications

The NP-hardness of 3-partition was used to prove the NP-hardness rectangle packing, as well as of Tetris[5][6] and some other puzzles,[7] and some job scheduling problems.[8]

References

Шаблон:Reflist