以下代码可对结构体数组中的元素进行排序,也差不多算是一个小小的模板了吧

#include<iostream>
#include<algorithm>
using namespace std;
struct node
{
int x;
int y;
bool operator<(const node &a) const//此操作是对操作符"<"进行重构
{
return x < a.x;//对结构体数组x进行从大到小排序
// return y > a.y;//对结构体数组y进行从大到小排序
}
}s[100]; //bool cmp(int x,int y)//这个重构函数不能用在结构体数组中
//{
// return x > y;
//} int main()
{
int n;
cin >> n;
for(int i = 0;i < n;i++)
cin >> s[i].x >> s[i].y; sort(s,s+n);
for(int i = 0;i < n;i++)
cout << s[i].x << " " << s[i].y << endl;
cout << endl;
return 0;
}

运行结果:

也可以这样

#include<iostream>
#include<algorithm>
using namespace std;
struct node
{
int x;
int y;
bool operator<(const node &a) const
{
return x > a.x;
}
}s[]; bool cmp(node m,node n)
{
m.x < n.x;
} int main()
{
int n;
cin >> n;
for(int i = ;i < n;i++)
cin >> s[i].x >> s[i].y; sort(s,s+n);
for(int i = ;i < n;i++)
cout << s[i].x << " " << s[i].y << endl;
cout << endl;
return ;
}

对优先队列的应用,POJ2431是一个很好的题目,此题用了优先队列+贪心

Expedition
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 29720   Accepted: 8212

Description

A 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 fuel tank. The truck now leaks one unit of fuel every unit of distance it travels.

To repair the truck, the cows need to drive to the nearest town (no more than 1,000,000 units distant) down a long, winding road. On this road, between the town and the current location of the truck, there are N (1 <= N <= 10,000) fuel stops where the cows can stop to acquire additional fuel (1..100 units at each stop).

The jungle is a dangerous place for humans and is especially dangerous for cows. Therefore, the cows want to make the minimum possible number of stops for fuel on the way to the town. Fortunately, the capacity of the fuel tank on their truck is so large that there is effectively no limit to the amount of fuel it can hold. The truck is currently L units away from the town and has P units of fuel (1 <= P <= 1,000,000).

Determine the minimum number of stops needed to reach the town, or if the cows cannot reach the town at all.

Input

* Line 1: A single integer, N

* Lines 2..N+1: Each line contains two space-separated integers describing a fuel stop: The first integer is the distance from the town to the stop; the second is the amount of fuel available at that stop.

* Line N+2: Two space-separated integers, L and P

Output

* Line 1: A single integer giving the minimum number of fuel stops necessary to reach the town. If it is not possible to reach the town, output -1.

Sample Input

4
4 4
5 2
11 5
15 10
25 10

Sample Output

2

Hint

INPUT DETAILS:

The truck is 25 units away from the town; the truck has 10 units of fuel. Along the road, there are 4 fuel stops at distances 4, 5, 11, and 15 from the town (so these are initially at distances 21, 20, 14, and 10 from the truck). These fuel stops can supply up to 4, 2, 5, and 10 units of fuel, respectively.

OUTPUT DETAILS:

Drive 10 units, stop to acquire 10 more units of fuel, drive 4 more units, stop to acquire 5 more units of fuel, then drive to the town.

Source

思路:贪心思路为,在假设汽车一路向前,在途中有经过加油站的话,把加油站进行排序,符合条件的加油站中的汽油从大到小排序,存到优先队列中,在汽车用完时,即随时可以在队列的队头取汽油,使得汽车尽可能加最多的汽油,停最少次
#include<iostream>
#include<algorithm>
#include<queue>
using namespace std;
struct node
{
int dis;
int fuel;
bool operator<(const node &a) const//此重构操作,请参考上面的代码
{
return dis > a.dis;//返回dis,说明是对dis这个数组进行排序操作
}
}stop[]; priority_queue<int> que; int main()
{
int n,l,p;
cin >> n;
for(int i = ;i < n;i++)
cin >> stop[i].dis >> stop[i].fuel;
cin >> l >> p;
int ans = ;
sort(stop,stop + n);//对加油站距离dis数组进行从大到小排序
que.push(p);//队列自动从大到小排序,即排序汽油p
int temp = ;
while(l > && !que.empty())//卡车未到达终点并且卡车在当前汽油用完前有路过加油站
{
ans++;//卡车停下加一次油计数器
l -= que.top();//加油,更新一次汽油用尽后距离终点的距离
que.pop();//删除已用的加油站的汽油
while(l <= stop[temp].dis && temp < n)//卡车距离终点的距离小于等于最近加油站的距离并且这个加油站的位置在终点加油站前面,这里假设终点也为一个加油站。//l <= stop[i].dis意思是卡车能经过离它最近的一个加油站,如果大于的话,说明卡车停下时没有加油站可加油 
que.push(stop[temp++].fuel);//将经过的加油站压入优先队列,要使用的时候就取队头元素(队头中存的汽油最大) //如果经过加油站,则一定要将该加油站的可加油量添加到优先队列当中 
}//temp++说明离卡车最近的加油站,卡车继续往前开,加油站点也依次往后,所以变量temp需要自增
if(l > )//如果卡车距离终点的距离还大于0的话,即通过不了终点
cout << "-1" << endl;
else
cout << ans - << endl;//在起点深度时候记为一次加油,这里需要减去1
return ;
}

其中代码有详细的注释,希望注释能加深理解

代码参考于:博客园-小小菜鸟

POJ2431 优先队列+贪心 - biaobiao88的更多相关文章

  1. 最高的奖励 - 优先队列&贪心 / 并查集

    题目地址:http://www.51cpc.com/web/problem.php?id=1587 Summarize: 优先队列&贪心: 1. 按价值最高排序,价值相同则按完成时间越晚为先: ...

  2. hdu3438 Buy and Resell(优先队列+贪心)

    Buy and Resell Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)To ...

  3. poj2431(优先队列+贪心)

    题目链接:http://poj.org/problem?id=2431 题目大意:一辆卡车,初始时,距离终点L,油量为P,在起点到终点途中有n个加油站,每个加油站油量有限,而卡车的油箱容量无限,卡车在 ...

  4. H - Expedition 优先队列 贪心

    来源poj2431 A group of cows grabbed a truck and ventured on an expedition deep into the jungle. Being ...

  5. ZOJ-3410Layton's Escape(优先队列+贪心)

    Layton's Escape Time Limit: 2 Seconds      Memory Limit: 65536 KB Professor Layton is a renowned arc ...

  6. CodeForces - 853A Planning (优先队列,贪心)

    Helen works in Metropolis airport. She is responsible for creating a departure schedule. There are n ...

  7. 1350: To Add Which? (优先队列+贪心 或者 数组模拟)

    1350: To Add Which? Submit Page    Summary    Time Limit: 1 Sec     Memory Limit: 128 Mb     Submitt ...

  8. 牛客网 桂林电子科技大学第三届ACM程序设计竞赛 C.二元-K个二元组最小值和最大-优先队列+贪心(思维)

    链接:https://ac.nowcoder.com/acm/contest/558/C来源:牛客网 小猫在研究二元组. 小猫在研究最大值. 给定N个二元组(a1,b1),(a2,b2),…,(aN, ...

  9. hdu 4544 优先队列+贪心

    题意:最近,减肥失败的湫湫为发泄心中郁闷,在玩一个消灭免子的游戏.游戏规则很简单,用箭杀死免子即可.箭是一种消耗品,已知有M种不同类型的箭可以选择,并且每种箭都会对兔子造成伤害,对应的伤害值分别为Di ...

随机推荐

  1. Git项目分支分配

    主要分支包含master分支与develop分支,临时分支可以分为: release: 从develop分出 ,是最终要发布的版本. feature: 实现某功能时推荐新建分支,从develop分出. ...

  2. Highly Efficient Analysis of Glycoprotein Sialylation in Human Serum by Simultaneous Quantification of Glycosites and Site-Specific Glycoforms (通过同时定量糖基化位点和位点特异性糖型来高效分析人血清中的糖蛋白唾液酸化)-阅读人:陈秋实

    期刊名:Journal of Proteome Research 发表时间:(2019年9月) IF:3.78 单位: 中国科学院大连化学物理研究所 中国科学院大学 大连医科大学第二附属医院 物种:人 ...

  3. 使用tomcat7发布war项目启动org_apache_tomcat_websocket报错

    在使用tomcat7发布项目时(项目是用springboot 2.1.4.RELEASE版本开发的) 换成tomcat8就可以正常发布了,网上说tomcat7不支持servlet3.1,升级到spri ...

  4. CSS技巧 (3)

    关于CSS技巧的一些题目 题目列表 所有答案点击题目链接 1.下面这个左边竖条图形,只使用一个标签,可以有多少种实现方式: 2.类似下面这样的条纹边框,只使用一个标签,可以有多少种实现方式 -- 从条 ...

  5. 一道短小精悍的JS小题目

    看到题目你是不是以为我在开车,没错,我就不承认,你能咋的,你瞅啥,别瞅我,瞅题 题目是这样式的 结果是啥呀,这里我就不买关子了,结果是undefined,相信基础好一点的大佬们一眼就能看出来,像我这种 ...

  6. shell检测网站地址是否存活

    #!/bin/bash . /etc/init.d/functions url_list=(www.baidu.com) ChkCurl(){ i=0 while [ $i -lt 2 ] do cu ...

  7. 开发一个带UI的库(asp.net core 3.0)

    在GitHub上有个项目,本来是作为自己研究学习.net core的Demo,没想到很多同学在看,还给了很多星,所以觉得应该升成3.0,整理一下,写成博分享给学习.net core的同学们. 项目名称 ...

  8. SSH实现无密码登录

    1.生成秘钥 : ssh-keygen -t rsa # -t 指定生成秘钥方式,生成秘钥过程需要三次回车 2.将生成的公钥传给 ssh 的对端 ssh-copy-id root@192.168.3. ...

  9. 500行代码,教你用python写个微信飞机大战

    这几天在重温微信小游戏的飞机大战,玩着玩着就在思考人生了,这飞机大战怎么就可以做的那么好,操作简单,简单上手. 帮助蹲厕族.YP族.饭圈女孩在无聊之余可以有一样东西让他们振作起来!让他们的左手 / 右 ...

  10. Switch-case语句的应用

    /** switch语句有关规则    • switch(表达式)中表达式的值必须是下述几种类型之一:byte,short, char,int,枚举 (jdk 5.0),String (jdk 7.0 ...