[LeetCode] Put Marbles in Bags

2551. Put Marbles in Bags

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.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Solution {
public:
long long putMarbles(vector<int>& weights, int k) {
priority_queue<long long> q1;
priority_queue<long long, vector<long long>, greater<long long>> q2;
for(int i = 0; i < weights.size() - 1; i++) {
q1.push(weights[i] + weights[i+1]);
q2.push(weights[i] + weights[i+1]);
}
long long res = 0;
for(int i = 0; i < k - 1; i++) {
res += q1.top() - q2.top();
q1.pop();
q2.pop();
}
return res;
}
};
Author: Song Hayoung
Link: https://songhayoung.github.io/2023/01/29/PS/LeetCode/put-marbles-in-bags/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.