2902. Count of Sub-Multisets With Bounded Sum
You are given a 0-indexed array
nums
of non-negative integers, and two integersl
andr
.Return the count of sub-multisets within
nums
where the sum of elements in each subset falls within the inclusive range of[l, r]
.Since the answer may be large, return it modulo
109 + 7
.A sub-multiset is an unordered collection of elements of the array in which a given value
x
can occur0, 1, ..., occ[x]
times, whereocc[x]
is the number of occurrences ofx
in the array.Note that:
- Two sub-multisets are the same if sorting both sub-multisets results in identical multisets.
- The sum of an empty multiset is
0
.
c++
1 | class Solution { |