-
-
Notifications
You must be signed in to change notification settings - Fork 46.7k
Create combination_sum_iv.py #7672
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 5 commits
630d69c
909c704
c63e28e
1c35f5c
81bd35f
463f99e
194ff68
6435bef
9817a44
de29693
d42eafd
0c3b8ca
2e846dc
8cf9c1a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
""" | ||
Question: | ||
You are given an array of distinct integers and you have to tell how many | ||
different ways of selecting the elements from the array are there such that | ||
the sum of chosen elements is equal to the target number tar. | ||
|
||
Example | ||
|
||
Input: | ||
N = 3 | ||
target = 5 | ||
array = [1, 2, 5] | ||
|
||
Output: | ||
9 | ||
|
||
Approach: | ||
The basic idea is to go over recursively to find the way such that the sum | ||
of chosen elements is “tar”. For every element, we have two choices | ||
1. Include the element in our set of chosen elements. | ||
2. Don’t include the element in our set of chosen elements. | ||
""" | ||
|
||
|
||
|
||
|
||
def combination_sum_iv(N: int, array: list[int], target: int) -> int: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: |
||
""" | ||
Function checks the all possible combinations, and returns the count | ||
of possible combination in exponential Time Complexity. | ||
|
||
>>> combination_sum_iv(3, [1,2,5], 5) | ||
9 | ||
""" | ||
|
||
def count_of_possible_combinations(target: int) -> int: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file |
||
if target < 0: | ||
return 0 | ||
if target == 0: | ||
return 1 | ||
count = 0 | ||
for i in range(len(array)): | ||
count += count_of_possible_combinations(target - array[i]) | ||
return count | ||
kondekarshubham123 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
return count_of_possible_combinations(target) | ||
|
||
|
||
def combination_sum_iv_dp_array(N: int, array: list[int], target: int) -> int: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: |
||
""" | ||
Function checks the all possible combinations, and returns the count | ||
of possible combination in O(N^2) Time Complexity as we are using Dynamic | ||
programming array here. | ||
|
||
>>> combination_sum_iv_dp_array(3, [1,2,5], 5) | ||
9 | ||
""" | ||
|
||
def count_of_possible_combinations_with_dp_array( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file |
||
target: int, dp_array: list[int] | ||
) -> int: | ||
if target < 0: | ||
return 0 | ||
if target == 0: | ||
return 1 | ||
if dp_array[target] != -1: | ||
return dp_array[target] | ||
answer = 0 | ||
for i in range(len(array)): | ||
answer += count_of_possible_combinations_with_dp_array( | ||
target - array[i], dp_array | ||
) | ||
dp_array[target] = answer | ||
return answer | ||
|
||
dp_array = [-1] * (target + 1) | ||
return count_of_possible_combinations_with_dp_array(target, dp_array) | ||
|
||
|
||
def combination_sum_iv_bottom_up(N: int, array: list[int], target: int) -> int: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide descriptive name for the parameter: |
||
""" | ||
Function checks the all possible combinations with using bottom up approach, | ||
and returns the count of possible combination in O(N^2) Time Complexity | ||
as we are using Dynamic programming array here. | ||
|
||
>>> combination_sum_iv_bottom_up(3, [1,2,5], 5) | ||
9 | ||
""" | ||
|
||
dp_array = [0] * (target + 1) | ||
dp_array[0] = 1 | ||
|
||
for i in range(1, target + 1): | ||
for j in range(N): | ||
if i - array[j] >= 0: | ||
dp_array[i] += dp_array[i - array[j]] | ||
|
||
return dp_array[target] | ||
|
||
|
||
if __name__ == "__main__": | ||
import doctest | ||
|
||
doctest.testmod() | ||
N = 3 | ||
target = 5 | ||
array = [1, 2, 5] | ||
print(combination_sum_iv(N, array, target)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please provide descriptive name for the parameter:
N