
优先队列
文章平均质量分 86
余人未至
这个作者很懒,什么都没留下…
展开
-
(优先队列)poj2431Expedition
DescriptionA group of cows grabbed a truck and ventured on an expedition deep into the jungle. Being rather poor drivers, the cows unfortunately managed to run over a rock and puncture the truck's原创 2016-11-19 19:07:18 · 263 阅读 · 0 评论 -
优先队列
头文件:#include 按照由大到小排序的队列priority_queue que;按照由小到大排序的队列加上头文件vector priority_queue, greater > que;以由大到小为例:最大的元素,即top元素,pque.top();删除元素pque.pop();插入元素队列长度pque.size();判断是否为空qu原创 2016-11-19 19:36:14 · 195 阅读 · 0 评论 -
(贪心(也可用优先队列))poj3253Fence Repair
DescriptionFarmer John wants to repair a small length of the fence around the pasture. He measures the fence and finds that he needs N (1 ≤ N ≤ 20,000) planks of wood, each having some integer len原创 2016-10-23 15:53:53 · 310 阅读 · 1 评论