java.lang.Object
g2501_2600.s2518_number_of_great_partitions.Solution

public class Solution extends Object
2518 - Number of Great Partitions.<p>Hard</p> <p>You are given an array <code>nums</code> consisting of <strong>positive</strong> integers and an integer <code>k</code>.</p> <p><strong>Partition</strong> the array into two ordered <strong>groups</strong> such that each element is in exactly <strong>one</strong> group. A partition is called great if the <strong>sum</strong> of elements of each group is greater than or equal to <code>k</code>.</p> <p>Return <em>the number of <strong>distinct</strong> great partitions</em>. Since the answer may be too large, return it <strong>modulo</strong> <code>10<sup>9</sup> + 7</code>.</p> <p>Two partitions are considered distinct if some element <code>nums[i]</code> is in different groups in the two partitions.</p> <p><strong>Example 1:</strong></p> <p><strong>Input:</strong> nums = [1,2,3,4], k = 4</p> <p><strong>Output:</strong> 6</p> <p><strong>Explanation:</strong> The great partitions are: ([1,2,3], [4]), ([1,3], [2,4]), ([1,4], [2,3]), ([2,3], [1,4]), ([2,4], [1,3]) and ([4], [1,2,3]).</p> <p><strong>Example 2:</strong></p> <p><strong>Input:</strong> nums = [3,3,3], k = 4</p> <p><strong>Output:</strong> 0</p> <p><strong>Explanation:</strong> There are no great partitions for this array.</p> <p><strong>Example 3:</strong></p> <p><strong>Input:</strong> nums = [6,6], k = 2</p> <p><strong>Output:</strong> 2</p> <p><strong>Explanation:</strong> We can either put nums[0] in the first partition or in the second partition. The great partitions will be ([6], [6]) and ([6], [6]).</p> <p><strong>Constraints:</strong></p> <ul> <li><code>1 <= nums.length, k <= 1000</code></li> <li><code>1 <= nums[i] <= 10<sup>9</sup></code></li> </ul>
  • Constructor Details

    • Solution

      public Solution()
  • Method Details

    • countPartitions

      public int countPartitions(int[] nums, int k)