Facebook Hacker Cup 2013, Round 1, Problem 1
February 15, 2013
The first step is to understand the problem. Consider the example with N = 4, K = 3, and a = [3, 6, 2, 8]. There are four different triples that can be formed from the input array: [3, 6, 2], [3, 6, 8], [3, 2, 8] and [6, 2, 8]. The maximums of those triples are 6, 8, 8 and 8, and the sum of the maximums is 30, which is the desired output.
In general, if we sort the array, the smallest K – 1 items in the array will never be maximums, so the desired output will be the sum of the product of each of the highest array items times the number of different ways to choose the lower items. In the example, there is 1 maximum of 6 and 3 maximums of 8, producing a sum of 30. The number of ways to choose the lower items is given by the binomial theorem, the function nCr where n is the number of items available and r is the number of items to choose. In the example, nCr(2,2)=1 is the number of ways that 3 items can be chosen from a list of 3, and nCr(3,2)=3 is the number of ways 3 items can be chosen from a list of 4. Note that, for our problem, c is K-1 and n ranges from K-1 to N-1. The nCr function can be computed as and implemented like this (nCr is normally pronounced “choose”, because it is the number of ways to choose r items out of n):
(define (choose n r)
(if (zero? r) 1
(* n (/ r) (choose (- n 1) (- k 1)))))
However, that doesn’t work for this problem because of the requirement that solutions are given modulo 1000000007; there is no division in modular arithmetic. What we can do instead is multiply by the modular inverse, and since the limit on K is 10000, we can precompute the modular inverses. Here are some convenient constants for the problem limits, a function to compute the modular inverse, a function that precomputes the 10000 needed inverses, and a function that computes the choose function:
(define m 1000000007)
(define n 10000)
(define (inverse x m)
(let loop ((x x) (a 0) (b m) (u 1))
(if (positive? x)
(let ((q (quotient b x)) (r (remainder b x)))
(loop (modulo b x) u x (- a (* q u))))
(if (= b 1) (modulo a m) #f))))
(define inv
(let ((inverses (make-vector (+ n 1) 0)))
(do ((x 1 (+ x 1))) ((< n x))
(vector-set! inverses x (inverse x m)))
(lambda (x) (vector-ref inverses x))))
(define (choose n k)
(if (zero? k) 1
(modulo (* n (inv k) (choose (- n 1) (- k 1))) m)))
With that, the function that computes the output for a given set of inputs is simple; it uses drop
from the Standard Prelude:
(define (f n k as)
(let loop ((i (- k 1)) (as (drop (- k 1) (sort < as))) (s 0))
(if (null? as) s
(loop (+ i 1) (cdr as) (+ s (* (choose i (- k 1)) (car as)))))))
This just loops with i counting the number of items available to be chosen, as listing the successive maximums, and s is the accumulating sum. Here are some examples:
> (f 4 3 '(3 6 2 8))
30
> (f 5 2 '(10 20 30 40 50))
400
> (f 6 4 '(0 1 2 3 5 8))
103
> (f 2 2 '(1069 1122))
1122
> (f 10 5 '(10386 10257 10432 10087 10381 10035 10167 10206 10347 10088))
2621483
The Facebook problem requires some specific input and output formatting, but we’ll ignore that. You can run the program at http://programmingpraxis.codepad.org/S0qgV4pB.
[…] Pages: 1 2 […]
[…] today’s Programming Praxis exercise, our goal is to solve the first problem of the 2013 Facebook hacker […]
My Haskell solution (see http://bonsaicode.wordpress.com/2013/02/15/programming-praxis-facebook-hacker-cup-2013-round-1-problem-1/ for a version with comments):
A Python version. The gmpy library is used for speed.
Here’s my Java solution:
Easier to fill out 10001 rows of Pascal’s triangle, nCr is the rth column of the nth row.
Her is a solution in C#. As it hunts for combos of sets with size = k, it tracks the max as it goes, and additively computes the final sum.