#include<iostream> #include<algorithm> #include<string> using namespace std; struct str{ int age; string id; int order; }people[105]; bool cmp(const str a,const str b) { if (a.age >= 60 && b.age < 60) { return true; // 老年人优先看病 } else if (a.age < 60 && b.age >= 60) { return false; // 非老年人后看病 } else if (a.age >= 60 && b.age >= 60) { if (a.age == b.age) { return a.order < b.order; // 年龄相同按登记顺序排序 } else { return a.age > b.age; // 老年人按年龄从大到小排序 } } else { return a.order < b.order; // 非老年人按登记顺序排序 } } int main() { int n; cin >> n; for(int i =0 ;i<n;i++) { cin >> people[i].id >> people[i].age; people[i].order = i; // 记录登记顺序 } sort(people,people+n,cmp); for (int i = 0; i < n; i++) { cout << people[i].id << endl; } return 0; }
解题思路:
注意事项:
参考代码:
0.0分
50 人评分
C语言程序设计教程(第三版)课后习题7.2 (C语言代码)浏览:546 |
不知道哪里错了浏览:1226 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:610 |
P1001 (C语言代码)浏览:836 |
WU-蓝桥杯算法提高VIP-Quadratic Equation (C++代码)浏览:1808 |
IP判断 (C语言代码)浏览:820 |
母牛的故事 (C语言代码)浏览:1451 |
【偶数求和】 (C语言代码)浏览:460 |
矩形面积交 (C语言代码)浏览:1433 |
复数求和 (C语言代码)浏览:995 |