-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path2551-put-marbles-in-bags.js
46 lines (40 loc) · 1.31 KB
/
2551-put-marbles-in-bags.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* 2551. Put Marbles in Bags
* https://leetcode.com/problems/put-marbles-in-bags/
* Difficulty: Hard
*
* You have k bags. You are given a 0-indexed integer array weights where weights[i] is the weight
* of the ith marble. You are also given the integer k.
*
* Divide the marbles into the k bags according to the following rules:
* - No bag is empty.
* - If the ith marble and jth marble are in a bag, then all marbles with an index between the ith
* and jth indices should also be in that same bag.
* - If a bag consists of all the marbles with an index from i to j inclusively, then the cost of
* the bag is weights[i] + weights[j].
*
* The score after distributing the marbles is the sum of the costs of all the k bags.
*
* Return the difference between the maximum and minimum scores among marble distributions.
*/
/**
* @param {number[]} weights
* @param {number} k
* @return {number}
*/
var putMarbles = function(weights, k) {
const n = weights.length;
if (k === n) return 0;
const pairSums = [];
for (let i = 0; i < n - 1; i++) {
pairSums.push(weights[i] + weights[i + 1]);
}
pairSums.sort((a, b) => a - b);
let minScore = 0;
let maxScore = 0;
for (let i = 0; i < k - 1; i++) {
minScore += pairSums[i];
maxScore += pairSums[n - 2 - i];
}
return maxScore - minScore;
};