Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions dynamic_programming/number_of_longest_increasing_subsequence.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
"""
Leetcode Problem:673. Number of Longest Increasing Subsequence
Link: https://leetcode.com/problems/number-of-longest-increasing-subsequence/description/

Given an integer array nums, return the number of longest increasing subsequences.
Notice that the sequence has to be strictly increasing.

Example 1:

Input: nums = [1,3,5,4,7]
Output: 2
Explanation: The two longest increasing subsequences are [1, 3, 4, 7] and [1, 3, 5, 7].
Example 2:

Input: nums = [2,2,2,2,2]
Output: 5
Explanation: The length of the longest increasing subsequence is 1, and there are 5 increasing subsequences of length 1, so output 5.

Check failure on line 17 in dynamic_programming/number_of_longest_increasing_subsequence.py

View workflow job for this annotation

GitHub Actions / ruff

Ruff (E501)

dynamic_programming/number_of_longest_increasing_subsequence.py:17:89: E501 Line too long (133 > 88)


Constraints:

1 <= nums.length <= 2000
-10**6 <= nums[i] <= 10**6
The answer is guaranteed to fit inside a 32-bit integer.
"""


def findNumberOfLIS(nums):

Check failure on line 28 in dynamic_programming/number_of_longest_increasing_subsequence.py

View workflow job for this annotation

GitHub Actions / ruff

Ruff (N802)

dynamic_programming/number_of_longest_increasing_subsequence.py:28:5: N802 Function name `findNumberOfLIS` should be lowercase
n = len(nums)
if n == 0:
return 0

length = [1] * n
count = [1] * n

for i in range(n):
for j in range(i):
if nums[j] < nums[i]:
if length[j] + 1 > length[i]:
length[i] = length[j] + 1
count[i] = count[j]
elif length[j] + 1 == length[i]:
count[i] += count[j]

max_len = max(length)
return sum(c for l, c in zip(length, count) if l == max_len)

Check failure on line 46 in dynamic_programming/number_of_longest_increasing_subsequence.py

View workflow job for this annotation

GitHub Actions / ruff

Ruff (E741)

dynamic_programming/number_of_longest_increasing_subsequence.py:46:22: E741 Ambiguous variable name: `l`


# For testing...
n = int(input())
nums = list(map(int, input().split()))
print(findNumberOfLIS(nums))
Loading