-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDay89.cpp
63 lines (20 loc) · 862 Bytes
/
Day89.cpp
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
long long minCost(long long arr[], long long n) {
priority_queue<long long , vector<long long> , greater<long long>> pqueue; // Min Priority queue
for(long long i=0;i<n;i++){
pqueue.push(arr[i]);
}
long long first,second;
long long finalSum =0;
while(pqueue.size() >0){
long long first = pqueue.top();
pqueue.pop();
if(pqueue.size() >0){
long long second = pqueue.top();
pqueue.pop();
long long sum = first + second;
finalSum += sum;
pqueue.push(sum);
}
}
return finalSum;
}