博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
bzoj1029: [JSOI2007]建筑抢修(堆+贪心)
阅读量:5119 次
发布时间:2019-06-13

本文共 889 字,大约阅读时间需要 2 分钟。

1029: [JSOI2007]建筑抢修

题目:

 

题解:

   一道以前就做过的水题(找个水题签个到嘛...)

   很明显就是一道贪心题,这里我们用一个堆来维护

   具体看代码吧,很容易YY所以不讲

代码:

1 #include
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 using namespace std; 9 typedef long long LL;10 struct node11 {12 LL t1,t2;13 }a[151000];14 priority_queue
,less
> q;15 bool cmp(node n1,node n2)16 {17 if(n1.t2>n2.t2)return false;18 if(n1.t2
n2.t1)return false;21 return true;22 }23 LL n;24 int main()25 {26 scanf("%lld",&n);27 for(int i=1;i<=n;i++)28 scanf("%lld%lld",&a[i].t1,&a[i].t2);29 sort(a+1,a+n+1,cmp);30 LL ans=0,now=0;31 for(int i=1;i<=n;i++)32 {33 if(now+a[i].t1<=a[i].t2)34 {35 ans++;36 now+=a[i].t1;37 q.push(a[i].t1);38 }39 else40 {41 LL t=q.top();42 if(a[i].t1

 

转载于:https://www.cnblogs.com/CHerish_OI/p/8258063.html

你可能感兴趣的文章
移动开发平台-应用之星app制作教程
查看>>
leetcode 459. 重复的子字符串(Repeated Substring Pattern)
查看>>
伪类与超链接
查看>>
centos 7 redis-4.0.11 主从
查看>>
博弈论 从懵逼到入门 详解
查看>>
永远的动漫,梦想在,就有远方
查看>>
springboot No Identifier specified for entity的解决办法
查看>>
慵懒中长大的人,只会挨生活留下的耳光
查看>>
"远程桌面连接--“发生身份验证错误。要求的函数不受支持
查看>>
【BZOJ1565】 植物大战僵尸
查看>>
VALSE2019总结(4)-主题报告
查看>>
浅谈 unix, linux, ios, android 区别和联系
查看>>
51nod 1428 活动安排问题 (贪心+优先队列)
查看>>
中国烧鹅系列:利用烧鹅自动执行SD卡上的自定义程序(含视频)
查看>>
Solaris11修改主机名
查看>>
latex for wordpress(一)
查看>>
如何在maven工程中加载oracle驱动
查看>>
Flask 系列之 SQLAlchemy
查看>>
aboutMe
查看>>
【Debug】IAR在线调试时报错,Warning: Stack pointer is setup to incorrect alignmentStack,芯片使用STM32F103ZET6...
查看>>