Skip to content

Latest commit

 

History

History

2587

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

You are given a 0-indexed integer array nums. You can rearrange the elements of nums to any order (including the given order).

Let prefix be the array containing the prefix sums of nums after rearranging it. In other words, prefix[i] is the sum of the elements from 0 to i in nums after rearranging it. The score of nums is the number of positive integers in the array prefix.

Return the maximum score you can achieve.

 

Example 1:

Input: nums = [2,-1,0,1,-3,3,-3]
Output: 6
Explanation: We can rearrange the array into nums = [2,3,1,-1,-3,0,-3].
prefix = [2,5,6,5,2,2,-1], so the score is 6.
It can be shown that 6 is the maximum score we can obtain.

Example 2:

Input: nums = [-2,-3,0]
Output: 0
Explanation: Any rearrangement of the array will result in a score of 0.

 

Constraints:

  • 1 <= nums.length <= 105
  • -106 <= nums[i] <= 106

Related Topics:
Array, Greedy, Sorting, Prefix Sum

Similar Questions:

Solution 1.

// OJ: https://leetcode.com/problems/rearrange-array-to-maximize-prefix-score
// Author: github.com/lzl124631x
// Time: O(NlogN)
// Space: O(N) considering sorting
class Solution {
public:
    int maxScore(vector<int>& A) {
        sort(begin(A), end(A), greater<>());
        long long sum = 0, ans = 0;
        for (int n : A) {
            sum += n;
            if (sum <= 0) break;
            ++ans;
        }
        return ans;
    }
};