Open In App

Subarray whose sum is closest to K

Given an array of positive and negative integers and an integer K. The task is to find the subarray which has its sum closest to k. In case of multiple answers, print anyone.

Note: Closest here means abs(sum-k) should be minimal.

Examples: 

Input: a[] = { -5, 12, -3, 4, -15, 6, 1 }, K = 2 
Output: 1
The subarray {-3, 4} or {1} has sum = 1 which is the closest to K.

Input: a[] = { 2, 2, -1, 5, -3, -2 }, K = 7 
Output: 6
Here the output can be 6 or 8 
The subarray {2, 2, -1, 5} gives sum as 8 which has abs(8-7) = 1 which is same as that of the subarray {2, -1, 5} which has abs(6-7) = 1. 

A naive approach is to check for all possible subarray sum using prefix sum. The complexity in that case will be O(N2).

An efficient solution will be to use C++ STL set and binary search to solve the following problem. Follow the below algorithm to solve the above problem. 

Below is the implementation of the above approach. 

// C++ program to find the
// sum of subarray whose sum is
// closest to K
#include <bits/stdc++.h>
using namespace std;

// Function to find the sum of subarray
// whose sum is closest to K
int closestSubarraySumToK(int a[], int n, int k)
{

    // Declare a set
    set<int> s;

    // initially consider the
    // first subarray as the first
    // element in the array
    int presum = a[0];

    // insert
    s.insert(a[0]);

    // Initially let this difference
    // be the minimum
    int mini = abs(a[0] - k);

    // let this be the sum
    // of the subarray
    // to be searched initially
    int sum = presum;

    // iterate for all the array elements
    for (int i = 1; i < n; i++) {

        // calculate the prefix sum
        presum += a[i];

        // insert the current prefix sum
        s.insert(presum);

        // find the closest subarray
        // sum to by using lower_bound
        auto it = s.lower_bound(presum - k);

        // if k present in set
        // return it
        if (s.find(k) != s.end())
            return k;

        // if it is the first element
        // in the set
        if (it == s.begin()) {

            // get the prefix sum till start
            // of the subarray
            int diff = *it;

            // if the subarray sum is closest to K
            // than the previous one
            if (abs((presum - diff) - k) < mini) {

                // update the minimal difference
                mini = abs((presum - diff) - k);

                // update the sum
                sum = presum - diff;
            }

            if (abs(presum - k) < mini) {
                // update the minimal difference
                mini = abs((presum - diff) - k);

                // update the sum
                sum = presum - diff;
            }
        }

        // if the difference is
        // present in between
        else if (it != s.end()) {

            // get the prefix sum till start
            // of the subarray
            int diff = *it;

            // if the subarray sum is closest to K
            // than the previous one
            if (abs((presum - diff) - k) < mini) {

                // update the minimal difference
                mini = abs((presum - diff) - k);

                // update the sum
                sum = presum - diff;
            }

            // also check for the one before that
            // since the sum can be greater than
            // or less than K also
            it--;

            // get the prefix sum till start
            // of the subarray
            diff = *it;

            // if the subarray sum is closest to K
            // than the previous one
            if (abs((presum - diff) - k) < mini) {

                // update the minimal difference
                mini = abs((presum - diff) - k);

                // update the sum
                sum = presum - diff;
            }
        }

        // if there exists no such prefix sum
        // then the current prefix sum is
        // checked and updated
        else {

            // if the subarray sum is closest to K
            // than the previous one
            if (abs(presum - k) < mini) {

                // update the minimal difference
                mini = abs(presum - k);

                // update the sum
                sum = presum;
            }
        }
    }

    return sum;
}

// Driver Code
int main()
{
    int a[] = { -5, 12, -3, 4, -15, 6, 1 };
    int n = sizeof(a) / sizeof(a[0]);
    int k = 2;

    cout << closestSubarraySumToK(a, n, k);
    return 0;
}

// This code is modified by Susobhan Akhuli
// Java program to find the
// sum of subarray whose sum is
// closest to K
import java.util.*;

class GFG {

    // Function to find the sum of subarray
    // whose sum is closest to K
    static int closestSubarraySumToK(int a[], int n, int k)
    {

        // Declare a set
        TreeSet<Integer> s = new TreeSet<>();

        // initially consider the
        // first subarray as the first
        // element in the array
        int presum = a[0];

        // insert
        s.add(a[0]);

        // Initially let this difference
        // be the minimum
        int mini = Math.abs(a[0] - k);

        // let this be the sum
        // of the subarray
        // to be searched initially
        int sum = presum;

        // iterate for all the array elements
        for (int i = 1; i < n; i++) {

            // calculate the prefix sum
            presum += a[i];

            // insert the current prefix sum
            s.add(presum);

            // find the closest subarray
            // sum to by using lower_bound
            Integer it = s.lower(presum - k);

            // if k present in set return it
            if (s.contains(k))
                return k;

            // if it is the first element
            // in the set
            if (it == s.first()) {

                // get the prefix sum till start
                // of the subarray
                int diff = it;

                // if the subarray sum is closest to K
                // than the previous one
                if (Math.abs((presum - diff) - k) < mini) {

                    // update the minimal difference
                    mini = Math.abs((presum - diff) - k);

                    // update the sum
                    sum = presum - diff;
                }
            }

            // if the difference is
            // present in between
            else if (it == s.last()) {

                // get the prefix sum till start
                // of the subarray
                int diff = it;

                // if the subarray sum is closest to K
                // than the previous one
                if (Math.abs((presum - diff) - k) < mini) {

                    // update the minimal difference
                    mini = Math.abs((presum - diff) - k);

                    // update the sum
                    sum = presum - diff;
                }

                // also check for the one before that
                // since the sum can be greater than
                // or less than K also
                it--;

                // get the prefix sum till start
                // of the subarray
                diff = it;

                // if the subarray sum is closest to K
                // than the previous one
                if (Math.abs((presum - diff) - k) < mini) {

                    // update the minimal difference
                    mini = Math.abs((presum - diff) - k);

                    // update the sum
                    sum = presum - diff;
                }
            }

            // if there exists no such prefix sum
            // then the current prefix sum is
            // checked and updated
            else {

                // if the subarray sum is closest to K
                // than the previous one
                if (Math.abs(presum - k) < mini) {

                    // update the minimal difference
                    mini = Math.abs(presum - k);

                    // update the sum
                    sum = presum + 1;
                }
            }
        }

        return sum;
    }

    // Driver Code
    public static void main(String[] args)
    {
        int a[] = { -5, 12, -3, 4, -15, 6, 1 };
        int n = a.length;
        int k = 2;

        System.out.print(closestSubarraySumToK(a, n, k));
    }
}

// This code contributed by Rajput-Ji
// This code is modified by Susobhan Akhuli
# Python3 program to find the
# sum of subarray whose sum is
# closest to K
import bisect

# Function to find the sum of subarray
# whose sum is closest to K
def closestSubarraySumToK(a , n , k):
    
    # Declare a set
    s = []

    # initially consider the
    # first subarray as the first
    # element in the array
    presum = a[0]

    # insert
    s.append(a[0])

    # Initially let this difference
    # be the minimum
    mini = abs(a[0] - k)

    # let this be the sum
    # of the subarray
    # to be searched initially
    sum = presum

    # iterate for all the array elements
    for i in range(1, n):

        # calculate the prefix sum
        presum += a[i]

        # find the closest subarray
        # sum to by using lower_bound
        it = bisect.bisect_left(s,presum - k)
        
        if(it == -1):
            continue
                
        #if it is the first element
        # in the set
        if (it == 0):

            #get the prefix sum till start
            #of the subarray
            diff = s[it]

            # if the subarray sum is closest to K
            # than the previous one
            if (abs((presum - diff) - k) < mini):

                # update the minimal difference
                mini = abs((presum - diff) - k)

                # update the sum
                sum = presum - diff
            
            if (abs(presum - k) < mini):
                #update the minimal difference
                mini = abs((presum - diff) - k)
                
                #update the sum
                sum = presum - diff
                
            

        # if the difference is
        # present in between
        elif (it != len(s)):
            
            # get the prefix sum till start
            # of the subarray
            diff = s[it]

            # if the subarray sum is closest to K
            # than the previous one
            if (abs((presum - diff) - k) < mini):

                # update the minimal difference
                mini = abs((presum - diff) - k)

                # update the sum
                sum = presum - diff
                

            # also check for the one before that
            # since the sum can be greater than
            # or less than K also
            it -= 1

            # get the prefix sum till start
            # of the subarray
            diff = s[it]

            # if the subarray sum is closest to K
            # than the previous one
            if (abs((presum - diff) - k) < mini):

                # update the minimal difference
                mini = abs((presum - diff) - k)

                # update the sum
                sum = presum - diff;


        # if there exists no such prefix sum
        # then the current prefix sum is
        # checked and updated
        else :

            # if the subarray sum is closest to K
            # than the previous one
            if (abs(presum - k) < mini):

                # update the minimal difference
                mini = abs(presum - k)

                # update the sum
                sum = presum + 1;

        # insert the current prefix sum
        bisect.insort(s, presum)
    if(k in s):
        return k
    return sum

    
    
# Driver Code
a = [ -5, 12, -3, 4, -15, 6, 1 ]
n = len(a)
k = 2

print(closestSubarraySumToK(a, n, k))

#This code is contributed by phasing17
# This code is modified by Susobhan Akhuli
// C# program to find the
// sum of subarray whose sum is
// closest to K
using System;
using System.Linq;
using System.Collections.Generic;

public class GFG {

    // Function to find the sum of subarray
    // whose sum is closest to K
    static int closestSubarraySumToK(int[] a, int n, int k)
    {

        // Declare a set
        SortedSet<int> s = new SortedSet<int>();

        // initially consider the
        // first subarray as the first
        // element in the array
        int presum = a[0];

        // insert
        s.Add(a[0]);

        // Initially let this difference
        // be the minimum
        int mini = Math.Abs(a[0] - k);

        // let this be the sum
        // of the subarray
        // to be searched initially
        int sum = presum;

        // iterate for all the array elements
        for (int i = 1; i < n; i++) {

            // calculate the prefix sum
            presum += a[i];

            // find the closest subarray
            // sum to by using lower_bound
            int it = lower_bound(s, presum - k);

            // // if k present in set
            // // return it
            // if (s.Contains(k))
            //     return k;

            // if it is the first element
            // in the set
            if (it == s.First()) {

                // get the prefix sum till start
                // of the subarray
                int diff = it;

                // if the subarray sum is closest to K
                // than the previous one
                if (Math.Abs((presum - diff) - k) < mini) {

                    // update the minimal difference
                    mini = Math.Abs((presum - diff) - k);

                    // update the sum
                    sum = presum - diff;
                }
            }

            // if the difference is
            // present in between
            else if (it == s.Last()) {

                // get the prefix sum till start
                // of the subarray
                int diff = it;

                // if the subarray sum is closest to K
                // than the previous one
                if (Math.Abs((presum - diff) - k) < mini) {

                    // update the minimal difference
                    mini = Math.Abs((presum - diff) - k);

                    // update the sum
                    sum = presum - diff;
                }

                // also check for the one before that
                // since the sum can be greater than
                // or less than K also
                it--;

                // get the prefix sum till start
                // of the subarray
                diff = it;

                // if the subarray sum is closest to K
                // than the previous one
                if (Math.Abs((presum - diff) - k) < mini) {

                    // update the minimal difference
                    mini = Math.Abs((presum - diff) - k);

                    // update the sum
                    sum = presum - diff;
                }
            }

            // if there exists no such prefix sum
            // then the current prefix sum is
            // checked and updated
            else {

                // if the subarray sum is closest to K
                // than the previous one
                if (Math.Abs(presum - k) < mini) {

                    // update the minimal difference
                    mini = Math.Abs(presum - k);

                    // update the sum
                    sum = presum + 1;
                }
            }

            // insert the current prefix sum
            s.Add(presum);
        }

        // if k present in set return it
        if (s.Contains(k))
            return k;

        return sum - 1;
    }
    public static int lower_bound(SortedSet<int> s, int val)
    {
        List<int> temp = new List<int>();
        temp.AddRange(s);
        temp.Sort();
        temp.Reverse();

        if (temp.IndexOf(val) + 1 == temp.Count)
            return -1;
        return temp[temp.IndexOf(val) + 1];
    }

    // Driver Code
    public static void Main(String[] args)
    {
        int[] a = { -5, 12, -3, 4, -15, 6, 1 };
        int n = a.Length;
        int k = 2;

        Console.Write(closestSubarraySumToK(a, n, k));
    }
}

// This code is contributed by Rajput-Ji
// This code is modified by Susobhan Akhuli
<script>
// javascript program to find the
// sum of subarray whose sum is
// closest to K

    // Function to find the sum of subarray
    // whose sum is closest to K
    function closestSubarraySumToK(a , n , k) {

        // Declare a set
        var s = [];

        // initially consider the
        // first subarray as the first
        // element in the array
        var presum = a[0];

        // insert
        s.push(a[0]);

        // Initially let this difference
        // be the minimum
        var mini = Math.abs(a[0] - k);

        // let this be the sum
        // of the subarray
        // to be searched initially
        var sum = presum;

        // iterate for all the array elements
        for (var i = 1; i < n; i++) {
            s.sort();
            
            // calculate the prefix sum
            presum += a[i];

            // find the closest subarray
            // sum to by using lower_bound
            var it = lower_bound(s, presum - k);
            if(it == -1)
                continue;
                
            // if it is the first element
            // in the set
            if (it == s[0]) {

                // get the prefix sum till start
                // of the subarray
                var diff = it;

                // if the subarray sum is closest to K
                // than the previous one
                if (Math.abs((presum - diff) - k) < mini) {

                    // update the minimal difference
                    mini = Math.abs((presum - diff) - k);

                    // update the sum
                    sum = presum - diff;
                }
            }

            // if the difference is
            // present in between
            else if (it == s[s.length-1]) {

                // get the prefix sum till start
                // of the subarray
                var diff = it;

                // if the subarray sum is closest to K
                // than the previous one
                if (Math.abs((presum - diff) - k) < mini) {

                    // update the minimal difference
                    mini = Math.abs((presum - diff) - k);

                    // update the sum
                    sum = presum - diff;
                }

                // also check for the one before that
                // since the sum can be greater than
                // or less than K also
                it--;

                // get the prefix sum till start
                // of the subarray
                diff = it;

                // if the subarray sum is closest to K
                // than the previous one
                if (Math.abs((presum - diff) - k) < mini) {

                    // update the minimal difference
                    mini = Math.abs((presum - diff) - k);

                    // update the sum
                    sum = presum - diff;
                }
            }

            // if there exists no such prefix sum
            // then the current prefix sum is
            // checked and updated
            else {

                // if the subarray sum is closest to K
                // than the previous one
                if (Math.abs(presum - k) < mini) {

                    // update the minimal difference
                    mini = Math.abs(presum - k);

                    // update the sum
                    sum = presum + 1;
                }
            }

            // insert the current prefix sum
            s.push(presum);
        }
        
        // if k present in set return it
        if(s.includes(k))
            return k;

        return sum;
    }
    function lower_bound(s, val) {
        let temp = [...s];
        temp.sort((a, b) => a - b);
        return temp[temp.indexOf(val) + 1];
    }
    
    // Driver Code
        var a = [ -5, 12, -3, 4, -15, 6, 1 ];
        var n = a.length;
        var k = 2;

        document.write(closestSubarraySumToK(a, n, k));

// This code is contributed by Rajput-Ji
// This code is modified by Susobhan Akhuli
</script>

Output
1



Complexity Analysis:

Subarray whose sum is closest to K in c:

Approach:

1. Initialize two pointers start and end at the first element of the array.

2. Initialize a variable curr_sum to the first element of the array.

3. Initialize a variable min_diff to the absolute difference between curr_sum and K.

4. Traverse through the array while the end pointer is less than the second-last element.

5. If curr_sum is less than K, move the end pointer to the right and add the element at end to curr_sum.

6. If curr_sum is greater than or equal to K, move the start pointer to the right and subtract the element at start-1 from curr_sum.

7.Update min_diff to the absolute difference between curr_sum and K if it is smaller than the current min_diff.

8.Once the traversal is complete, print the subarray with the sum closest to K.

9. Traverse through the array again and print the subarray whose sum is closest to K. This is done by moving start and end pointers and checking if the absolute difference between the sum of the subarray and K is equal to min_diff.

#include <bits/stdc++.h>
using namespace std;

void subarray_closest_sum(int arr[], int n, int k) {
    int start = 0, end = 0;
    int curr_sum = arr[0], min_diff = INT_MAX;

    // Initialize the minimum difference between the subarray sum and K
    min_diff = abs(curr_sum - k);

    // Traverse through the array
    while (end < n - 1) {
        // If the current sum is less than K, move the end pointer to the right
        if (curr_sum < k) {
            end++;
            curr_sum += arr[end];
        }
        // If the current sum is greater than or equal to K, move the start pointer to the right
        else {
            curr_sum -= arr[start];
            start++;
        }
        // Update the minimum difference between the subarray sum and K
        if (abs(curr_sum - k) < min_diff) {
            min_diff = abs(curr_sum - k);
        }
    }

    // Print the subarray with the sum closest to K
    cout << "Subarray with the sum closest to " << k << " is: ";
    start = 0, end = 0, curr_sum = arr[0];
    while (end < n - 1) {
        if (curr_sum < k) {
            end++;
            curr_sum += arr[end];
        }
        else {
            curr_sum -= arr[start];
            start++;
        }
        if (abs(curr_sum - k) == min_diff) {
            for (int i = start; i <= end; i++) {
                cout << arr[i] << " ";
            }
            break;
        }
    }
}

int main() {
    int arr[] = {2, 4, 8, 3, 7};
    int n = sizeof(arr)/sizeof(arr[0]);
    int k = 11;
    subarray_closest_sum(arr, n, k);
    return 0;
}
#include <stdio.h>
#include <stdlib.h>
#include <limits.h> // For INT_MAX

void subarray_closest_sum(int arr[], int n, int k) {
    int start = 0, end = 0;
    int curr_sum = arr[0], min_diff = INT_MAX;
    
    // Initialize the minimum difference between the subarray sum and K
    min_diff = abs(curr_sum - k);
    
    // Traverse through the array
    while (end < n - 1) {
        // If the current sum is less than K, move the end pointer to the right
        if (curr_sum < k) {
            end++;
            curr_sum += arr[end];
        }
        // If the current sum is greater than or equal to K, move the start pointer to the right
        else {
            curr_sum -= arr[start];
            start++;
        }
        // Update the minimum difference between the subarray sum and K
        if (abs(curr_sum - k) < min_diff) {
            min_diff = abs(curr_sum - k);
        }
    }
    
    // Print the subarray with the sum closest to K
    printf("Subarray with the sum closest to %d is: ", k);
    start = 0, end = 0, curr_sum = arr[0];
    while (end < n - 1) {
        if (curr_sum < k) {
            end++;
            curr_sum += arr[end];
        }
        else {
            curr_sum -= arr[start];
            start++;
        }
        if (abs(curr_sum - k) == min_diff) {
            for (int i = start; i <= end; i++) {
                printf("%d ", arr[i]);
            }
            break;
        }
    }
}

int main() {
    int arr[] = {2, 4, 8, 3, 7};
    int n = sizeof(arr)/sizeof(arr[0]);
    int k = 11;
    subarray_closest_sum(arr, n, k);
    return 0;
}
import java.util.*;

public class Main {
  public static void subarrayClosestSum(int[] arr, int n,
                                        int k)
  {
    int start = 0, end = 0;
    int currSum = arr[0], minDiff = Integer.MAX_VALUE;

    // Initialize the minimum difference between the
    // subarray sum and K
    minDiff = Math.abs(currSum - k);

    // Traverse through the array
    while (end < n - 1) {
      // If the current sum is less than K, move the
      // end pointer to the right
      if (currSum < k) {
        end++;
        currSum += arr[end];
      }
      // If the current sum is greater than or equal
      // to K, move the start pointer to the right
      else {
        currSum -= arr[start];
        start++;
      }
      // Update the minimum difference between the
      // subarray sum and K
      if (Math.abs(currSum - k) < minDiff) {
        minDiff = Math.abs(currSum - k);
      }
    }

    // Print the subarray with the sum closest to K
    System.out.print("Subarray with the sum closest to "
                     + k + " is: ");
    start = 0;
    end = 0;
    currSum = arr[0];
    while (end < n - 1) {
      if (currSum < k) {
        end++;
        currSum += arr[end];
      }
      else {
        currSum -= arr[start];
        start++;
      }
      if (Math.abs(currSum - k) == minDiff) {
        for (int i = start; i <= end; i++) {
          System.out.print(arr[i] + " ");
        }
        break;
      }
    }
  }

  public static void main(String[] args)
  {
    int[] arr = { 2, 4, 8, 3, 7 };
    int n = arr.length;
    int k = 11;
    subarrayClosestSum(arr, n, k);
  }
}
def subarray_closest_sum(arr, n, k):
    # Initialize start and end pointers, current sum, and minimum difference
    start = 0
    end = 0
    curr_sum = arr[0]
    min_diff = float('inf')
    # Initialize the minimum difference between the subarray sum and K
    min_diff = abs(curr_sum - k)

    # Traverse through the array
    while end < n - 1:
        # If the current sum is less than K, move the end pointer to the right
        if curr_sum < k:
            end += 1
            curr_sum += arr[end]
        # If the current sum is greater than or equal to K, move the start pointer to the right
        else:
            curr_sum -= arr[start]
            start += 1

        # Update the minimum difference between the subarray sum and K
        if abs(curr_sum - k) < min_diff:
            min_diff = abs(curr_sum - k)

    # Print the subarray with the sum closest to K
    print(f"Subarray with the sum closest to {k} is: ")
    start = 0
    end = 0
    curr_sum = arr[0]

    while end < n - 1:
        if curr_sum < k:
            end += 1
            curr_sum += arr[end]
        else:
            curr_sum -= arr[start]
            start += 1

        # Print the subarray with the sum closest to K
        if abs(curr_sum - k) == min_diff:
            for i in range(start, end+1):
                print(f"{arr[i]} ", end='')
            break

arr = [2, 4, 8, 3, 7]
n = len(arr)
k = 11
subarray_closest_sum(arr, n, k)
// C# code addition 
using System;

class MainClass {
  static void subarray_closest_sum(int[] arr, int n, int k) {
    int start = 0, end = 0;
    int curr_sum = arr[0], min_diff = int.MaxValue;

    // Initialize the minimum difference between the subarray sum and K
    min_diff = Math.Abs(curr_sum - k);

    // Traverse through the array
    while (end < n - 1) {
      // If the current sum is less than K, move the end pointer to the right
      if (curr_sum < k) {
        end++;
        curr_sum += arr[end];
      }
      // If the current sum is greater than or equal to K, 
      // move the start pointer to the right
      else {
        curr_sum -= arr[start];
        start++;
      }
      // Update the minimum difference between the subarray sum and K
      if (Math.Abs(curr_sum - k) < min_diff) {
        min_diff = Math.Abs(curr_sum - k);
      }
    }

    // Print the subarray with the sum closest to K
    Console.Write("Subarray with the sum closest to " + k + " is: ");
    start = 0;
    end = 0;
    curr_sum = arr[0];
    while (end < n - 1) {
      if (curr_sum < k) {
        end++;
        curr_sum += arr[end];
      } else {
        curr_sum -= arr[start];
        start++;
      }
      if (Math.Abs(curr_sum - k) == min_diff) {
        for (int i = start; i <= end; i++) {
          Console.Write(arr[i] + " ");
        }
        break;
      }
    }
  }

  // Driver code 
  static void Main() {
    int[] arr = {2, 4, 8, 3, 7};
    int n = arr.Length;
    int k = 11;
    subarray_closest_sum(arr, n, k);
  }
}

// The code is contributed by Arushi Goel. 
function subarray_closest_sum(arr, n, k) {
    let start = 0, end = 0;
    let curr_sum = arr[0], min_diff = Number.MAX_SAFE_INTEGER;

    // Initialize the minimum difference between the subarray sum and K
    min_diff = Math.abs(curr_sum - k);

    // Traverse through the array
    while (end < n - 1) {
        // If the current sum is less than K, move the end pointer to the right
        if (curr_sum < k) {
            end++;
            curr_sum += arr[end];
        }
        // If the current sum is greater than or equal to K, move the start pointer to the right
        else {
            curr_sum -= arr[start];
            start++;
        }
        // Update the minimum difference between the subarray sum and K
        if (Math.abs(curr_sum - k) < min_diff) {
            min_diff = Math.abs(curr_sum - k);
        }
    }

    // Print the subarray with the sum closest to K
    console.log(`Subarray with the sum closest to ${k} is: `);
    start = 0, end = 0, curr_sum = arr[0];
    while (end < n - 1) {
        if (curr_sum < k) {
            end++;
            curr_sum += arr[end];
        }
        else {
            curr_sum -= arr[start];
            start++;
        }
        if (Math.abs(curr_sum - k) == min_diff) {
            for (let i = start; i <= end; i++) {
                console.log(`${arr[i]} `);
            }
            break;
        }
    }
}

const arr = [2, 4, 8, 3, 7];
const n = arr.length;
const k = 11;
subarray_closest_sum(arr, n, k);

Output
Subarray with the sum closest to 11 is: 8 3 



Time Complexity:
The time complexity of this algorithm is O(n), as we are traversing the array twice.

Auxiliary Space:
The space complexity of this algorithm is O(1)

Article Tags :