首页 > 代码库 > _bzoj1029 [JSOI2007]建筑抢修【贪心 堆】
_bzoj1029 [JSOI2007]建筑抢修【贪心 堆】
传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=1029
经典的贪心问题,不解释。
#include <cstdio> #include <algorithm> #include <queue> const int maxn = 150005; int n, ima, ans; struct st { int x, y; } a[maxn]; std::priority_queue<int> hp; bool cmp(const st & aa, const st & ss) { return aa.y < ss.y; } int main(void) { //freopen("in.txt", "r", stdin); scanf("%d", &n); for (int i = 0; i < n; ++i) { scanf("%d%d", &a[i].x, &a[i].y); } std::sort(a, a + n, cmp); for (int i = 0; i < n; ++i) { if (ima + a[i].x <= a[i].y) { ima += a[i].x; ++ans; hp.push(a[i].x); } else if (a[i].x < hp.top()) { ima = ima - hp.top() + a[i].x; hp.pop(); hp.push(a[i].x); } } printf("%d\n", ans); return 0; }
_bzoj1029 [JSOI2007]建筑抢修【贪心 堆】
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。