Three-Way Minimum Sum Partitions
November 22, 2019
Our function f
takes a single argument n and returns a list of three elements (x y z) in increasing order; for instance, (f 6)
returns (1 2 3)
. If n is prime, the function returns (1 1 n); if n = p * q is semi-prime, the function returns (1 p q); and if n has three prime factors, the function returns (x y z). Life gets harder when n has four or more factors.
Our first function uses brute force to compute all possible combinations of x, y and z and find the minimal sum:
(define (f1 n) (let ((xyz (list n n n))) (do ((xs (divisors n) (cdr xs))) ((null? xs) (sort < xyz)) (do ((ys (divisors (/ n (car xs))) (cdr ys))) ((null? ys)) (let ((z (/ n (car xs) (car ys)))) (when (< (+ (car xs) (car ys) z) (sum xyz)) (set! xyz (list (car xs) (car ys) z))))))))
That works fine for n with 1, 2, or 3 factors, or more, though it takes a while when n has lots of prime factors (that last number has 13,440 divisors):
> (f1 17) (1 1 17) > (f1 13290059) (1 3119 4261) > (f1 (* 5 17 83)) (5 17 83) > (f1 (* 2 3 5 83)) (5 6 83) > (time (f1 (* 2 2 2 2 2 2 3 3 3 3 5 5 5 7 7 11 13 17 19 23))) (time (f1 (* 2 ...))) 49 collections 7.661519834s elapsed cpu time, including 0.003838511s collecting 7.686354068s elapsed real time, including 0.004012308s collecting 412089984 bytes allocated, including 412857248 bytes reclaimed (32292 32300 32340)
Our second function finds the largest divisor less than or equal to the cube root of n, then the largest divisor less than or equal to the square root of the remaining cofactor of n, and then whatever is left:
(define (f2 n) (let* ((x (maxle (iroot 3 n) (divisors n))) (y (maxle (iroot 2 (/ n x)) (divisors (/ n x)))) (z (/ n x y))) (sort < (list x y z))))
> (f2 17) (1 1 17) > (f2 13290059) (1 3119 4261) > (f2 (* 5 17 83)) (5 17 83) > (f2 (* 2 3 5 83)) (3 10 83) > (time (f2 (* 2 2 2 2 2 2 3 3 3 3 5 5 5 7 7 11 13 17 19 23))) (time (f2 (* 2 ...))) no collections 0.110332680s elapsed cpu time 0.110471207s elapsed real time 1127552 bytes allocated (32292 32300 32340)
That’s faster, but it doesn’t always work, as the example of 2 * 3 * 5 * 83 = 2490 shows; the large factor overwhelms the rest of the calculation. To try to overcome large factors, my third function makes two calculations — the f2
calculation, plus a new calculation where I first remove the largest factor then take the two divisors on either side of the square root of the remaining cofactor — and compares the two, taking the smaller:
(define (f3 n) (let* ((x1 (maxle (iroot 3 n) (divisors n))) (y1 (maxle (iroot 2 (/ n x1)) (divisors (/ n x1)))) (z1 (/ n x1 y1)) (x2 (apply max (factors n))) (y2 (maxle (iroot 2 (/ n x2)) (divisors (/ n x2)))) (z2 (/ n x2 y2))) (if (< (+ x1 y1 z1) (+ x2 y2 z2)) (sort < (list x1 y1 z1)) (sort < (list x2 y2 z2)))))
But that still doesn’t work. Consider n = 1890 = 2 * 3 * 3 * 3 * 5 * 7: (f1 1890) => (9 14 15), a sum of 38; (f2 1890) => (9 10 21), a sum of 40; and (f3 1890) => (7 15 18), a different sum of 40.
So I’m not sure what to do next. Relying on the brute force calculation is unsatisfying, and can be very slow, but nothing better comes to mind. You can run the program at https://ideone.com/wV0vHJ.
I wonder if choosing a series of random partitions might work….
The method below is much faster than brute force. First determine all divisors and sort them in decreaing order. Loop for x starting from the cubic root downwards. Divide n by x, determine the sqrt of the result and check if it possible to improve the sum. Break if not possible. Otherwise loop downwards from this sqrt and find the first possible solution.
I will post full code later on ideone.
Full code with some changes is on Ideone.
@Paul: nice – I was thinking on similar lines, but didn’t think of the cutoff on line 10. I think that break on line 22 can be outdented (any smaller divisor than y will have a larger sum). It would be nice to do a binary search through the divisors to find the start points of the iterations.
@matthew. I saw also that I could outdent that line (see my Ideone post)
@Paul: So I see, good stuff. I’m wondering if we can remove cubic factors from n before finding the minimum sum, ie. if a+b+c = n is minimal, then is it the case that ka+kb+kc = k^3n is minimal?
@matthew. An interesting idea, but unfortunately there is a counterexample. Take 24=83. The best solution is x,y,z = 2, 3, 4 with sum 9. If you solve for n=3 with solution 1,1,3 (sum 5) the total sum is 25=10.
@matthew. Formatting caught me here, Of course, I meant 24=8×3 and 2×5=10.
@Paul: nice counterexample. Probably wouldn’t have helped much in the general case anyway.
Here’s a recursive solution in Python that supports an arbitrary number of factors, as opposed to 3 specified in the problem.
Output:
Here’s the recursive solution I posted above, with @Paul’s short-circuiting optimization. It runs noticeably faster now :-), even with the naive integer root function I wrote.
Output:
Klong solution
In addition to the brute force approach, I tried the following 2 alternatives:
1) Iterated the first loop from 1 to the floored cube root of the initial number; and
2) Iterated the first loop from 1 to the floored cube root of the initial number and iterated the 2nd loop from 1 to the floored square root of the quotient of the initial number and the 1st iterator.
The run shows one of the combinations which yields one of the least sums as well as the number of combinations before finding the minimum.
Results from the Klong run:
[Brute force: Answer – [ 9 14 15 ], # Entries – 270]
[Square root: Answer – [ 9 15 14 ], # Entries – 140]
[Cube/Square roots: Answer – [ 9 14 15 ], # Entries – 70]