Seems that it is a sorting problem.
Sort the price in decreasing order. (The problem seems that we need a fast sorting algorithm, the normal O(N2)O(N^2)O(N2) method will cause TLE)
Iterate through each price element, add the first two in the group only.
The second step can be done as follows elegantly:
Last updated 1 year ago
long calc_min_price(size_t n, long a[n]) { size_t cur = 0; long price = 0; for (size_t i = 0; i < n; i += 1) { if (i % 3 != 2) { price += a[i]; } } return price; }