VOOZH about

URL: https://www.geeksforgeeks.org/dsa/number-arrays-size-n-whose-elements-positive-integers-sum-k/

⇱ Number of arrays of size N whose elements are positive integers and sum is K - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Number of arrays of size N whose elements are positive integers and sum is K

Last Updated : 7 Jan, 2024

Given two positive integers N and K. The task is to find the number of arrays of size N that can be formed such that elements of the array should be positive integers and the sum of elements is equal to K.

Examples: 

Input : N = 2, K = 3
Output : 2
Explanation: [1, 2] and [2, 1] are the only arrays of size 2 whose sum is 3.

Input : n = 3, k = 7
Output : 15

Prerequisite: Stars and Bars  

Suppose there are K identical objects which needs to be placed in N bins (N indices of the array) such that each bin have at least one object. Instead of starting to place objects into bins, we start placing the objects on a line, where the object for the first bin will be taken from the left, followed by the objects for the second bin, and so forth. Thus, the configuration will be determined once one knows what is the first object going to the second bin, and the first object going to the third bin, and so on. We can indicate this by placing N X 1 separating bars at some places between two objects; since no bin is allowed to be empty, there can be at most one bar between a given pair of objects. So, we have K objects in a line with K - 1 gaps. Now we have to choose N - 1 gaps to place bars from K - 1 gaps. This can be chosen by K - 1CN - 1.

Below is implementation of this approach:  


Output
2

Time Complexity : O(N*K).

Auxiliary Space: O(K)
 

Comment