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 ...
随机推荐
- ApexSQL Log-SQL误操作恢复工具
今天不小心对数据库执行了一次误操作,心想有没有什么工具能恢复这次误操作呢?于是找到了Log Explorer 4.2,可惜它最多只支持SQL 2005,在SQL 2008上无法使用,然后又找到了Ape ...
- 解决Android解析图片的OOM问题!!!(转)
大家好,今天给大家分享的是解决解析图片的出现oom的问题,我们可以用BitmapFactory这里的各种Decode方法,如果图片很小的话,不会出现oom,但是当图片很大的时候 就要用BitmapFa ...
- VC 快速创建多层文件夹
BOOL CreateDirectory( LPCTSTR lpPathName, LPSECURITY_ATTRIBUTES lpSecurityAttributes ); 这个是大多数用户都知道的 ...
- Android的Touch事件处理机制
Android的Touch事件处理机制比较复杂,特别是在考虑了多点触摸以及事件拦截之后. Android的Touch事件处理分3个层面:Activity层,ViewGroup层,View层. 首先说一 ...
- [bzoj3224]普通平衡树/3223文艺平衡树
这是一道很普通的题.. 最近花了很多时间来想要去干什么,感觉自己还是太拿衣服 做这道题是因为偶尔看到了lavender的blog和她的bzoj早期AC记录,就被题目深深地吸引到了,原因有二: 自己sp ...
- Java API 实现HBase的数据添加与过滤查询
包依赖比较麻烦,找了好久,我用的CDH5.0 现将所依赖的包的列表清单如下: public class EmployeeDao { /** * @param args */ public static ...
- 转载:robotium typeText与enterText区别
solo.typeText和solo.enterText方法都可以对EditeText进行测试,达到的测试目的是一样的.存在几点不同: 1.实现上,typeText方法是robotium框架调用系统I ...
- POJ3308 Paratroopers(最小割/二分图最小点权覆盖)
把入侵者看作边,每一行每一列都是点,选取某一行某一列都有费用,这样问题就是选总权最小的点集覆盖所有边,就是最小点权覆盖. 此外,题目的总花费是所有费用的乘积,这时有个技巧,就是取对数,把乘法变为加法运 ...
- POJ3084 Panic Room(最小割)
把某点与某几点分开的最小花费,当然想到最小割.具体怎么建图,可以画个简单的情况,然后就清楚了: 0到1不受控制,建立0->1容量为INF的边: 1到0受在0一边的一个控制面板的控制,建立1-&g ...
- java基础-控制流语句
浏览以下内容前,请点击并阅读 声明 一般情况下,代码的执行按照从上到下的顺序,然而通过加入一些判断,循环和跳转语句,你可以有条件地执行特定的语句. 接下来分三部分介绍Java的控制流语句,他们是判断语 ...