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 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".
Sample Input:
12 4
Zoe_Bill 35 2333
Bob_Volk 24 5888
Anny_Cin 95 999999
Williams 30 -22
Cindy 76 76000
Alice 18 88888
Joe_Mike 32 3222
Michael 5 300000
Rosemary 40 5888
Dobby 24 5888
Billy 24 5888
Nobody 5 0
4 15 45
4 30 35
4 5 95
1 45 50
Sample Output:
Case #1:
Alice 18 88888
Billy 24 5888
Bob_Volk 24 5888
Dobby 24 5888
Case #2:
Joe_Mike 32 3222
Zoe_Bill 35 2333
Williams 30 -22
Case #3:
Anny_Cin 95 999999
Michael 5 300000
Alice 18 88888
Cindy 76 76000
Case #4:
None
思路:因为只有200个年龄,输入的行数最长有100000,平均每个年龄有500.加上M最大只有100,所以有些数据需要剔除。
注释部分是超时的代码(test 2不能通过),主要原因是每输入一个M min max,就要把一些vector排序,有重复。
/*
#include <iostream>
#include"stdio.h"
#include"stdlib.h"
#include"string.h"
#include"algorithm"
#include"vector"
using namespace std; struct person{
char name[9];
int age;
long worth;
}; bool comparePersonByWorth(struct person p1, struct person p2){
if(p1.worth>p2.worth){
return true;
}
return false;
} bool compare(struct person p1,struct person p2){
if(p1.worth>p2.worth)
return true;
if(p1.worth==p2.worth){
if(p1.age<p2.age)
return true;
if(p1.age==p2.age){
if(strcmp(p1.name,p2.name)<0){
return true;
}
}
}
return false;
}
int main()
{
vector<struct person> v[201];
long N;
int K; int M,minn,maxn; scanf("%ld%d",&N,&K); struct person p; for(long i=0;i<N;i++){
scanf("%s%d%ld",p.name,&p.age,&p.worth);
v[p.age].push_back(p);
} for(long i=1;i<=200;i++){
if(v[i].size()>100)
sort(v[i].begin(),v[i].begin(),comparePersonByWorth);
} int v_size,length,s;
for(int i=1;i<=K;i++){ scanf("%d%d%d",&M,&minn,&maxn); vector<struct person> v2 = v[minn]; for(int j=minn+1;j<=maxn;j++){
v_size = v[j].size();
length = (100>v_size)?v_size:100; v2.insert(v2.end(),v[j].begin(),v[j].begin()+length);
} printf("Case #%d:\n",i);
if(!v2.empty()){
sort(v2.begin(),v2.end(),compare);
v_size = v2.size();
s = (M>v_size)?v_size:M;
for(int k=0;k<s;k++){
printf("%s %d %ld\n",v2[k].name,v2[k].age,v2[k].worth);
}
}
else
{
printf("None\n");
}
}
return 0;
}
*/
#include <iostream>
#include"stdio.h"
#include"stdlib.h"
#include"string.h"
#include"algorithm"
#include"vector"
using namespace std; struct person{
char name[9];
int age;
long worth;
}; bool comparePersonByWorth(struct person p1, struct person p2){
if(p1.worth>p2.worth){
return true;
}
return false;
} bool compare(struct person p1,struct person p2){
if(p1.worth>p2.worth)
return true;
if(p1.worth==p2.worth){
if(p1.age<p2.age)
return true;
if(p1.age==p2.age){
if(strcmp(p1.name,p2.name)<0){
return true;
}
}
}
return false;
}
int main()
{
vector<struct person> v[201];
long N;
int K; int M,minn,maxn; scanf("%ld%d",&N,&K); struct person p; for(long i=0;i<N;i++){
scanf("%s%d%ld",p.name,&p.age,&p.worth);
v[p.age].push_back(p);
} vector<struct person> v2; int v_size,length,s;
for(long i=1;i<=200;i++){
/*如果相同年龄的富豪超过100个,则按照财富值筛选出前100*/
if(v[i].size()>100){
sort(v[i].begin(),v[i].end(),comparePersonByWorth); }
v_size = v[i].size();
length = (100>v_size)?v_size:100;
v2.insert(v2.end(),v[i].begin(),v[i].begin()+length);
}
sort(v2.begin(),v2.end(),compare); for(int i=1;i<=K;i++){
scanf("%d%d%d",&M,&minn,&maxn);
bool flag = false;
printf("Case #%d:\n",i);
int cnt = 0;//记录已经输出的富豪数目
for(int k=0;cnt<M&&k<v2.size();k++){
if(v2[k].age>=minn&&v2[k].age<=maxn){
printf("%s %d %ld\n",v2[k].name,v2[k].age,v2[k].worth);
flag = true;
cnt++;
}
} if(flag==false)
{
printf("None\n");
}
}
return 0;
}
1055. The World's Richest (25)的更多相关文章
- PAT 甲级 1055 The World's Richest (25 分)(简单题,要用printf和scanf,否则超时,string 的输入输出要注意)
1055 The World's Richest (25 分) Forbes magazine publishes every year its list of billionaires base ...
- PAT (Advanced Level) Practice 1055 The World's Richest (25 分) (结构体排序)
Forbes magazine publishes every year its list of billionaires based on the annual ranking of the wor ...
- 1055 The World's Richest (25分)(水排序)
Forbes magazine publishes every year its list of billionaires based on the annual ranking of the wor ...
- PAT (Advanced Level) 1055. The World's Richest (25)
排序.随便加点优化就能过. #include<iostream> #include<cstring> #include<cmath> #include<alg ...
- PAT甲题题解-1055. The World's Richest (25)-终于遇见一个排序的不水题
题目简单,但解题的思路需要转换一下,按常规思路肯定超时,推荐~ 题意:给出n个人的姓名.年龄和拥有的钱,然后进行k次查询,输出年龄在[amin,amx]内的前m个最富有的人的信息.如果财富值相同就就先 ...
- 【PAT甲级】1055 The World's Richest (25 分)
题意: 输入两个正整数N和K(N<=1e5,K<=1000),接着输入N行,每行包括一位老板的名字,年龄和财富.K次询问,每次输入三个正整数M,L,R(M<=100,L,R<= ...
- pat1055. The World's Richest (25)
1055. The World's Richest (25) 时间限制 400 ms 内存限制 128000 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue ...
- PATA1055 The World's Richest (25 分)
1055 The World's Richest (25 分) Forbes magazine publishes every year its list of billionaires based ...
- PAT 1055 The World's Richest[排序][如何不超时]
1055 The World's Richest(25 分) Forbes magazine publishes every year its list of billionaires based o ...
随机推荐
- WebRTC代码走读(八):代码目录结构
转载注明出处http://blog.csdn.net/wanghorse ├── ./base //基础平台库,包括线程.锁.socket等 ├── ./build //编译脚本,gyp ├── ./ ...
- TensorFlow
转自:http://blog.csdn.net/stdcoutzyx/article/details/51645396 本片博文是参考文献[1]的阅读笔记,特此声明 TensorFlow,以下简称TF ...
- 在Salesforce中处理Email的发送
在Salesforce中可以用自带的 Messaging 的 sendEmail 方法去处理Email的发送 请看如下一段简单代码: public boolean TextFormat {get;se ...
- 在SharePoint2010中用out-of-box的方式自定制Application Pages(AccessDenied,Confirmation,Error,Login,RequestAccess,Signout,WebDeleted)
在实际项目中需要对SharePoint2010中的AccessDenied页面进行自定制,于是乎上网搜索相关内容,经实际操作此方法可行,便以此文记录. 在SharePoint2010中,由于secur ...
- MySQL的中文编码问题
创建表格时,怎么让表格显示中文?注意:不区分大小写 mysql> ALTER TABLE 表格的名字 CONVERT TO CHARACTER SET UTF8; 怎么让默认的数据库支持中文字符 ...
- ontouchstart
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta cont ...
- [转载]C/C++可变参数之va_start和va_end使用详解
本文主要介绍va_start和va_end的使用及原理. 在以前的一篇帖子Format MessageBox 详解中曾使用到va_start和va_end这两个宏,但对它们也只是泛泛的了解. 介绍这两 ...
- Something about "for"
For语句引导了一个循环语句,格式for(::),例for(int i=0;i<100;i++).类似于if()括号的作用for()括号如同if()括号一样也是一个boolean型.int i= ...
- 分享Kali Linux 2016.2第49周虚拟机
分享Kali Linux 2016.2第49周虚拟机该虚拟机使用Kali Linux 2016.2第49周的64位镜像安装而成.基本配置如下:(1)该系统默认设置单CPU双核,内存为2GB,硬盘为50 ...
- Swift3.0语言教程比较、判断字符串
Swift3.0语言教程比较.判断字符串 Swift3.0语言教程比较.判断字符串,在一个程序中字符串很多时,常常会做的操作就是对这些字符串进行比较和判断.本小节将讲解这些内容. 1.不区分大小写比较 ...