Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I had this coding question in an interview.I couldnt find an optimum solution to this. what I did was,

for(i=0;i<n;i++)
for(j=i;j<n;j++)
if(a[i]+a[j]==k) print a[i], a[j]

But that would give rise to a O(n2) complexity. Is there a better way to solve this??

Array A contains n integers. A pair (i,j) of indexes of the array A is called "K-complementary" if A[i]+A[j] = K. For example, given the array:

A[0]=1 A[1]=8 A[2]=-3 A[3]=0 A[4]=1 A[5]=3 A[6]=-2A[7]=4 A[8]=5

The following pairs are 6-complementary: (0,8) (1,6) (4,8) (5,5) (6,1) (8,0) (8,4) For example the pair (4,8) is 6-complementary, because A[4]+A[8] = 1 + 5 = 6.
Write a function

int complementary_pairs(int k,int[] A);

which given an integer K and an array A of n integers, computes the number of K-complimentary pairs of indexes of the array A. For example for array A:

A[0]=1 A[1]=8 A[2]=-3 A[3]=0 A[4]=1 A[5]=3 A[6]=-2A[7]=4 A[8]=5 and K=6 you should return 7

share|improve this question
Is parallel computation allowed? – lbedogni Oct 17 '10 at 7:46
I dont think so ..I was allowed to write the function for that! – Dc01_xx Oct 17 '10 at 7:48
1  
My answer had a better performance than the one you accepted... :P – Vilx- Oct 17 '10 at 8:49
3  
best interview answer (if allowed): "I would post a question on Stackoverflow"! :-) (as you are doing here...) – Carlos Heuberger Oct 17 '10 at 11:06
Hey, honesty would go a far way with me. If i got this answer from you followed by a "and i'd verify my answer with Stackoverflow" i'd be fine with it. There is always someone smarter than you, and that person just might be on stackoverflow reading your question ;) – Oscar Godson Oct 18 '10 at 6:06
show 1 more comment

12 Answers

up vote 10 down vote accepted

You can do this in O(NlogN):

Sort the array A which takes O(NlogN).
Next you maintain two index i and j to the first and last element of the array respectively.
Find the sum of elements at index i and j, that is A[i] + A[j] we have 3 cases:

  • If that sum is equal to K we have a complementary pair (i,j). See if i and j are different, if yes we also have (j,i) as another complementary pair.
  • If that sum is less that K then we need to increase the sum, so increment i.
  • If that sum is greater that K then we need to decrease the sum, so decrement j.

Finding complementary pair is O(N), making the entire algorithm O(NlogN)

In Java this can be done as:

int i=0;
int j=arr.length-1;
int count = 0;

while( i <= j ) {
  if( A[i] + A[j] == K ) {
    // (i,j) is a complementary pair.
    count++;

    // if i!= j then (j,i) is also a complementary pair.
    if( i != j) {
       count++;
    }
    i++;
    j--;
  } else if( A[i] + A[j] < K ) {
    i++;
  } else {
    j--;
  }
}
share|improve this answer
This is identical to my original idea. Nice. +1 – JoshD Oct 17 '10 at 7:57
1  
I think it will enter an endless loop once it finds the first pair. Also, it is not exhaustive in case there are repeated values in the array. – LatinSuD Oct 17 '10 at 8:11
@LatinSuD: Thanks for pointing. And yes this assumes array elements are distinct. – codaddict Oct 17 '10 at 8:14
@codaddict - If the array has repeated elements(nothing is said that it cannot have) then what would be the fix to get this working for that case? I tried some changes in the i increment and j decrement logic but could not get it working for that case. Any soln. – goldenmean Jan 30 '12 at 22:50

It's possible to do this in O(N), if you have memory to burn. In pseudocode:

Create a radix tree T from A[]  // Performance - O(N)
Set R = 1
for each X in A[]: // Performance - O(N)
    Set Y = K-X
    if Y > X AND T contains Y // Performance - O(1)
        increase R by 1
return R

Some alternatives:

  • Use a hashtable instead of a radix tree. Better memory usage, though not a guaranteed O(1) lookup.
  • If these are 32-bit integers you can use a bitmask indicating which integers were present. Though it will require 512MB of memory.
  • Simply sort the array and then use binary lookup. That will however be a O(N*log(N)) performance. But it can be done with no memory overhead.

Added: Wait, I figured it out! O(N) with very little memory overhead! Check pseudocode:

Sort A[] with radix sort // Performance - O(N)
"Compress A[]" - convert it to an array where every number is just once, but also has a "count" property telling how many times it was in the original A[] // Performance - O(N)
Set B = 0
Set E = length of A[] - 1
Set R = 0
while B <= E:
    set M = A[B].Number + A[E].Number
    if M < K:
        Set B = B + 1
    else if M > K:
        Set E = E - 1
    else:
        if B = E then:
            Set R = R + (A[B].Count*(A[B].Count-1))/2
        else:
            Set R = R + A[B].Count*A[E].Count
        Set B = B + 1
        Set E = E - 1
return R

You can also skip the "compression" part and just calculate the Count on-the-fly, caching the results so that you don't have to do it again, and then using it when increasing A/decreasing B.

share|improve this answer
Nice, similar to mine, but slightly better with the Y > X check. +1 – justaname Oct 17 '10 at 8:00

My solution with complexity O(n) that covers negatives and big arrays:) Got a 100/100 for this one;)

int complementary_pairs ( int k,int[] A ) {
        HashMap<Long, ArrayList<Integer>>  compl = new HashMap<Long, ArrayList<Integer>>();
            for (int i = 0; i<  A.length; i++) {
                ArrayList<Integer>  tmp = compl.get(((long) k) - A[i]);
                if (tmp == null)
                    tmp = new ArrayList<Integer>();
                tmp.add(i);
                compl.put(((long) k) - A[i], tmp);
            }
            int counter = 0;
            for (int i = 0; i<  A.length; i++)
                if (compl.containsKey(Long.valueOf(A[i]))) {
                    counter += compl.get(Long.valueOf(A[i])).size();
                }

            return counter;
    }
share|improve this answer
that looks good indeed, and much simpler than the one with binary search... :) +1 – Savino Sguera Jan 21 '12 at 17:20
this is a good idea but you don't need to store an ArrayList in that map. A simple integer (or long) will suffice and you always save some space. – Mateusz Dymczyk Apr 2 at 16:29

assuming all values are positive, it can be easily extended to case with negatives

loop 1: loop through and add each value to a hash table:

loop 2: loop through and each time check the hash table for K - A[i] if there exists any entries increment a counter for each one.

return the counter/2.

for(i=0;i<n;i++) {
  hash[A[i]]++;
}

counter = 0;
for(i=0;i<n;i++) {
  if (2*A[i] == K) {
    if(hash[K - A[i]] <= 1) continue;
    counter += hash[K - A[i]]-1;
  }
  else counter += hash[K - A[i]];
}
return counter/2;

runtime is O(n)

share|improve this answer
1  
This would have a problem if a value of k/2 appeared in the list. That special case would need to be checked as you'd either count one pair twice (if duplicates exist), or you'd count the same element with itself as a pair. Great answer aside from that. +1 – JoshD Oct 17 '10 at 7:51
oh, nice catch! I'll fix that. – justaname Oct 17 '10 at 7:53
1  
Also, if one number appeared several times, say like in A = [2, 2, 2, 3, 3], K = 5, then this solution would have problems. – Vilx- Oct 17 '10 at 8:25
Hash table - my favorite structure. +1 – Dialecticus Oct 17 '10 at 10:54

First, sort the list. This can be O(n) if we have certain constraints on the values, but let's just assume O(n log n). Then for each element x do a binary search for K - x in the list. Add these pairs up and divide by two (since each one is counted twice). Also, there may be other edge cases if duplicate values are permitted in the list.

1 sort list

2 for x in list, find K - x. (binary search)

3 if found increment counter

4 return counter / 2

share|improve this answer
Yeah, same as I did. Binary search with duplicate elements is a pain to get right, but that works and it's O(n*log(N)). – Savino Sguera Jan 21 '12 at 17:13

I had same task in interview so I will post my solution (in java):

static int complementary_pairs(int k, int[] A) {
    int count = 0;
    for (int i = 0; i < A.length; i++) {
        for (int j = 0; j < A.length; j++) {
            if (A[j] + A[i] == k) {
                System.out.println (j + " " + i); // you can delete this (shows the pair indexes for testing)
                count++;
            }
        }
    }
    return count;
}
share|improve this answer
3  
this is O(n^2), the question asks O(n*log(n)) – Savino Sguera Jan 21 '12 at 17:10

Below is an improved solution which takes into account repeated elements in the array.

The accepted solution will not work correctly in cases when the array has repeated elements. For example array 1,1,1,1,2,3,5,6 with K=7 will give you 2, while the correct number is 8. The reason is that when we find a pair we are increasing i and decreasing j. But we have only to increase i since the next element has the same value. Improved code - in C:

 int i=0;
 int j=N-1;
 int count = 0;

 while( i <= j ) 
 {
     if( A[i] + A[j] == K ) 
     {
       // (i,j) is a complementary pair.
       count++;

       // if i!= j then (j,i) is also a complementary pair.
       if (i != j) 
          count++;
       if (A[i] == A[i+1])
          i++;
       else if (A[j] == A[j-1])
          j--;
       else
       {
          i++;
          j--;
       }
     } 
     else if( A[i] + A[j] < K ) {
         i++;
     } else {
         j--;
     }
 }
share|improve this answer

Here is the same algorithm from kargi above, just in c++. This is a clever solution.

int kComplimentary(long k, vector<long>* in)
{
    unordered_map<long, vector<long>*> myMap;
    for(unsigned int i = 0; i < in->size(); ++i)
    {
        unordered_map<long, vector<long>*>::iterator it = myMap.find(in->at(i));
        if(it == myMap.end())
        {
            vector<long>* newArray = new vector<long>;
            newArray->push_back(i);
            myMap.insert(pair<long, vector<long>*>(in->at(i), newArray));
        }
        else
        {
            it->second->push_back(i);
        }
    }

    int totalCount = 0;
    for(unsigned int i = 0; i < in->size(); ++i)
    {
        unordered_map<long, vector<long>*>::iterator it = myMap.find(k - in->at(i));
        if(it != myMap.end())
        {
            totalCount += it->second->size();
        }
    }

    return totalCount ;
}
share|improve this answer

I also had this problem provided as part of a Ruby coding test, but I'm not sure I completely understood the problem at the time. There seemed to be some conditions about elements being >= 0 that didn't quite make sense when I read it.

The above description of the problem can be solved (in Ruby) with:

def complementary_pairs ( k,a )
  pairs = 0
  0.upto(a.size - 1) { |index| pairs += a.select { |val| k == (a[index] + val) }.count }
  pairs
end

I'm not sure that using select invalidates the O(N) requirement though, as Ruby will probably iterate through the array behind the scenes to select the values.

share|improve this answer

I found this answer in "Cracking The Coding Interview" page 451

    private static void complementaryPairs(int[] array, int sum){
    Arrays.sort(array);

    int first = 0;
    int last  = array.length -1;

    while(first < last){
        int s = array[first] + array[last];
        if(s==sum){
            System.out.println(array[first] + " " + array[last]);
            first++;
            last--;
        }
        else{
            if(s < sum){
                first++;
            }
            else{
                last--;
            }
        }
    }
}

My code worked just as well but is not as verbose:

 public static void complementaryPairs(int[]numbers,int targetValue)
    {

        HashSet<Integer> hashSet=new HashSet<Integer>();
        for(int num:numbers)
        {
            if(hashSet.contains(targetValue-num)){
                System.out.println(num+","+(targetValue-num));
             }
            hashSet.add(num);
        }
    }

They both work fine and are O(n), however, I would use the first answer because its easier to explain to the interviewer.

share|improve this answer

Another java version, O(n) time and space, very similar to kargy's one.

public int complementary_pairs(int sum, int[] array){
    Map<Integer, Integer> ints = new HashMap<Integer, Integer>();
    int total = 0;
    for(Integer i : array){
        int currentCount = 0;
        if(ints.containsKey(i)){
            currentCount = ints.get(i);
        }
        ints.put(i, ++currentCount);
    }       
    for(Integer j : array){
        if(ints.containsKey(sum-j)){
            int howMany;
            if(j!=sum-j){
                // to get unique pairs (ie. (i, j) == (j, i)) just remove the *2
                howMany = ints.get(sum-j)*ints.get(j)*2; 
            } else {
                howMany = ints.get(j); // if sum==j*2 we count only one pair
            }
            total+=howMany;
            ints.remove(j);
            ints.remove(sum-j);
        }
    }       
    return total;
}
share|improve this answer

This one is O(nlogn) in C++. K and the elements of A are of type 'int'. Would this do a 100/100?

int complementary_pairs(int K, const vector<int> &A)
{
    int nRet = 0;

    map<int, int> NewMap;

    for(int i = 0; i < A.size(); ++i)
    {
        NewMap[A[i]] += 1; // O(logn)
    }

    for(int j = 0; j < A.size(); ++j)
    {
        nRet += NewMap[K - A[j]]; // O(nlogn) as traversing the map is O(logn)?
    }

    return nRet;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.