1055. The World's Richest

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.

Input Specification:

Each input file contains one test case. For each case, the first line contains 2 positive integers: N (<=105) - the total number of people, and K (<=103) - 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 [-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.

Output Specification:

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 <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <vector>
#include <algorithm>
using namespace std;
typedef struct
{
        char name[9];
        int age;
        long worth;
        }Node;
vector<Node> people;
vector<Node> query;
void Find(int min,int max,vector<Node> &query);
bool cmp (Node a,Node b);
int main ()
{
    int i,j,n,k;
    scanf("%d %d",&n,&k);
    Node temp;
    for( i=0;i<n;i++)
    {
         scanf("%s %d %ld",temp.name,&temp.age,&temp.worth);
         people.push_back(temp);
         }
    int m,min,max,length;
    for( i=1;i<=k;i++)
    {
         query.clear();
         scanf("%d %d %d",&m,&min,&max);
         printf("Case #%d:\n",i);
         Find(min,max,query);
         length=query.size();
         if( length==0)
         {
             printf("None\n");
             continue;
             }
         sort(query.begin(),query.end(),cmp);
         for( j=0;j<m&&j<length;j++)
         {
              printf("%s %d %ld\n",query[j].name,query[j].age,query[j].worth);
              }
         }
    system("pause");
    return 0;
    }
bool cmp (Node a,Node b)
{
     if( a.worth!=b.worth) return a.worth>b.worth;
     else if( a.age!=b.age) return a.age<b.age;
     else return strcmp(a.name,b.name)<0;
     }
void Find(int min,int max,vector<Node> &query)
{
     int i,length=people.size();
     Node temp;
     for( i=0;i<length;i++)
     {
          temp=people[i];
          if( temp.age>=min && temp.age<=max) query.push_back(temp);
          }
     }

1055. The World's Richest

时间: 2024-10-12 11:57:39

1055. The World's Richest的相关文章

PAT:1055. The World&#39;s Richest (25) AC

#include<stdio.h> #include<string.h> #include<algorithm> using namespace std; struct Person { char name[10]; int age,money; }P[100010]; bool cmp(Person a,Person b) { if(a.money!=b.money) return a.money>b.money; else if(a.age!=b.age) r

PAT (Advanced Level) 1055. The World&#39;s Richest (25)

排序.随便加点优化就能过. #include<iostream> #include<cstring> #include<cmath> #include<algorithm> #include<cstdio> #include<map> #include<queue> #include<string> #include<stack> #include<vector> using names

PAT 1055 The World&#39;s Richest

#include <cstdio> #include <cstdlib> #include <cstring> #include <vector> #include <queue> #include <algorithm> using namespace std; #define AGE_MAX 200 class People { public: char name[9]; int worth; int age; int idx;

1055. The World&#39;s Richest (25)

1 #include <stdio.h> 2 #include <vector> 3 #include<string.h> 4 #include<algorithm> 5 using namespace std; 6 7 struct MyStruct 8 { 9 char name[9]; 10 int age,worth; 11 }; 12 13 int cmp(MyStruct a,MyStruct b) 14 { 15 if(a.worth!=b.w

1055 The World&#39;s Richest (25 分)

1055 The World's Richest (25 分) 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 ran

PAT Advanced 1055 The World&#39;s Richest (25分)

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 n

1055 The World&#39;s Richest (25分)

1. 题目 2. 思路 常规题 3. 注意点 注意超时 4. tip 善于使用题目的条件来减少数据量 fill(begin, end, value)注意[begin, end) 2. 代码 #include<cstdio> #include<algorithm> #include<string> #include<vector> #include<iostream> // 14:57 - using namespace std; struct p

pat1055. The World&#39;s Richest (25)

1055. The World's Richest (25) 时间限制 400 ms 内存限制 128000 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue 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 si

A题目

1 1001 A+B Format(20) 2 1002 A+B for Polynomials(25) 3 1003 Emergency(25) 4 1004 Counting Leaves(30) 5 1005 Spell It Right(20) 6 1006 Sign In and Sign Out(25) 7 1007 Maximum Subsequence Sum(25) 8 1008 Elevator(20) 9 1009 Product of Polynomials(25) 10