第十二届蓝桥杯国赛_巧克力_堆

蓝桥杯2021年第十二届国赛真题-巧克力 - C语言网小蓝很喜欢吃巧克力,他每天都要吃一块巧克力。一天小蓝到超市想买一些巧克力。超市的货架上有很多种巧克力,每种巧克力有自己的价格、数量和剩余的保质期天数,小蓝只吃没过保质期的巧克力,请问小蓝最少花多少钱能……https://www.dotcpp.com/oj/problem2621.html

#include 
using namespace std;
typedef long long ll;
const int N = 1e5 + 4;
struct node {
    int a, b, c;
    bool operator < (const node &p) const {
    	return a > p.a;
    }
} s[N];
int cmp(node &p, node &q) {
    return p.b > q.b;
}
int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int x, n;
    cin >> x >> n;
    for (int i = 0; i < n; i++) {
        cin >> s[i].a >> s[i].b >> s[i].c;
    }
    sort(s, s + n, cmp); // 按保质期降序排序
    priority_queueq; // 堆顶为未过期的之中价格最小的 
    int cur = 0;
    ll ans = 0;
    q.push(s[cur++]);
	while(!q.empty() && x > 0) {
		while(cur < n && s[cur].b >= x) {
			q.push(s[cur++]);
		}
		node t = q.top();
		q.pop();
		x--;
		ans += t.a;
		t.c--;
		if (t.c > 0) {
			q.push(t);
		}
	}
	if (x > 0) {
		cout << -1;
	} else {
		cout << ans;
	}
    return 0;
}

你可能感兴趣的:(算法训练,蓝桥杯,算法,c++)