Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find the largest subset of a set of numbers such that the sum of any 2 numbers is not divisible by a given number

I'm trying to solve the Hackerrank problem Non-Divisible Subset stated below:

enter image description here

I attempted the following solution (which works for the sample test case):

# The lines below are for Hackerrank submissions
# n, k = map(int, raw_input().strip().split(' '))
    # a = map(int, raw_input().strip().split(' '))

n = 4
k = 3
a = [1, 7, 2, 4]

while True:
    all_pairs = [(a[i],a[j]) for i in range(len(a)) for j in range(i+1,len(a))]
    tested_pairs = {pair: (pair[0] + pair[1]) % k != 0 for pair in all_pairs}
    disqualified_pairs = {key: value for key, value in tested_pairs.iteritems() if not value}.keys()
    if not disqualified_pairs:
        break
    occurrences = list(sum(disqualified_pairs, ()))
    counts = map(lambda x: occurrences.count(x), a)
    index_remove = counts.index(max(counts))
    a.remove(index_remove)

print len(a)

What I'm trying to do is identify the 'offending' pairs and removing the element of a which occurs most frequently, until there are no 'offending' pairs left.

However, I'm getting "RunTime Error" for most of the test cases:

enter image description here

Presumably the algorithm above works in this simple case where only one number (the number 2) needs to be removed, but fails in more complicated test cases. Can anyone see what is wrong with it?

UPDATE

Following poke's suggestion to test k = 2 and a = [1, 2, 3], I made the following modifications:

n = 4
k = 2
a = [1, 2, 3]

while True:
    all_pairs = [(a[i],a[j]) for i in range(len(a)) for j in range(i+1,len(a))]
    disqualified_pairs = [pair for pair in all_pairs if (pair[0] + pair[1]) % k == 0]
    if not disqualified_pairs:
        break
    offending_numbers = sum(disqualified_pairs, ())   # 'Flatten' the disqualified pairs into a single list
    counts = {el: offending_numbers.count(el) for el in set(offending_numbers)}     # Count occurrences of each offending number
    number_to_remove = max(counts, key=counts.__getitem__)
    a.remove(number_to_remove)

print len(a)

The resulting a is [2, 3] and contains two elements as expected. I've also checked that it still works for the original example. However, I am still getting a "Segmentation Fault" on some of the test cases:

enter image description here

According to https://www.hackerrank.com/challenges/pairs/forum/comments/9154, segmentation faults typically occur because of invalid memory access (array indices which don't exist, etc.). I still haven't managed to find any other test cases, though, where the algorithm fails. Any ideas?

like image 461
Kurt Peek Avatar asked Oct 19 '22 03:10

Kurt Peek


1 Answers

Instead of generating all pairs, this could be done by counting modulus.

Time Complexity: O(n + k)

Space Complexity: O(k) or O(1), because k is 100 at max, O(k) => O(1)


Basic idea

(a + b) % k = ((a % k) + (b % k)) % k

Since (a % k) is in range [0, k-1],

(a % k) + (b % k) is in range [0, 2k-2]

In addition,

(a + b) % k = 0 when

  1. (a % k) = 0 and (b % k) = 0 OR

  2. (a % k) + (b % k) = k

Main idea

  1. Based on condition 2, when you choose any value of modulus i, you can choose any value of any modulus, except modulus k-i.
  2. In most case, there is no conflict to choose more than one value of modulus i.
  3. Based on condition 1, you can choose at most 1 value from modulus 0
  4. When k is even, k/2 + k/2 = k. You can choose at most 1 value from modulus k/2 when k is even

Base on the above information, the solution could be

  1. If n<2, return n
  2. Create an array of size k with all initial value 0, denote as Arr, to store modulus count
  3. Loop on array a with index i from 0 to n-1, add 1 to Arr[ a[i]%k ]
  4. Initialize a counter with initial value 0
  5. Loop on array Arr with index i from 1 to k-(k/2)-1, add Max(Arr[i], Arr[k-i]) to counter
  6. If Arr[0] > 0, add 1 to counter
  7. If k%2 = 0 and Arr[k/2] > 0, add 1 to counter
  8. return counter
like image 138
hk6279 Avatar answered Oct 21 '22 13:10

hk6279