题目描述
Forbes magazine publishes every year its list of billionaires based on the annual ranking of the world’s wealthiest people. Now you are supposed to simulate this job, but concentrate only on the people in a certain range of ages. That is, given the net worths of N people, you must find the M richest people in a given range of their ages.
输入
Each input file contains one test case. For each case, the first line contains 2 positive integers: N ( ≤ 1 0 5 ≤10^5 ≤105 ) - the total number of people, and K (≤1000) - the number of queries. Then N lines follow, each contains the name (string of no more than 8 characters without space), age (integer in (0, 200]), and the net worth (integer in [ − 1 0 6 , 1 0 6 ] [−10^6 ,10^6] [−106,106]) of a person. Finally there are K lines of queries, each contains three positive integers: M (≤100) - the maximum number of outputs, and [Amin, Amax] which are the range of ages. All the numbers in a line are separated by a space.
输出
For each query, first print in a line Case #X: where X is the query number starting from 1. Then output the M richest people with their ages in the range [Amin, Amax]. Each person’s information occupies a line, in the format
Name Age Net_Worth
The outputs must be in non-increasing order of the net worths. In case there are equal worths, it must be in non-decreasing order of the ages. If both worths and ages are the same, then the output must be in non-decreasing alphabetical order of the names. It is guaranteed that there is no two persons share all the same of the three pieces of information. In case no one is found, output None.
思路
排序输出
代码
#include<iostream>
#include<cstdio>
#include<stdlib.h>
#include<algorithm>
#include<string>
#include<vector>
using namespace std;
typedef struct node {
string name;
int age;
int worth;
}Per;
Per richer[100010];
int num, Amin, Amax;
bool cmp(Per a, Per b)
{
if (a.worth != b.worth)
{
return a.worth > b.worth;
}
if (a.age != b.age)
{
return a.age < b.age;
}
return a.name < b.name;
}
int main()
{
int N, K;
cin >> N>> K;
for (int i = 0; i < N; i++)
{
cin >> richer[i].name >> richer[i].age >> richer[i].worth;
}
sort(richer, richer + N, cmp);
for (int i = 0; i < K; i++)
{
printf("Case #%d:\n", i + 1);
cin >> num >> Amin >> Amax;
int all = 0;
vector<Per> v;
for (int j = 0; j < N; j++)
{
if (all == num)
{
break;
}
if (richer[j].age <= Amax && richer[j].age >= Amin)
{
cout << richer[j].name << " " << richer[j].age << " " << richer[j].worth << endl;
all++;
}
}
if (all == 0)
{
printf("None\n");
}
}
}