• PAT甲级:1055 The World‘s Richest |Python


    目录

    题目描述:

    Input Specification:

    Output Specification:

    Sample Input:

    Sample Output:

    题目大意: 

    解题思路: 

    Python3代码: 


    题目描述:

    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 [AminAmax] 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 [AminAmax]. 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:

    1. 12 4
    2. Zoe_Bill 35 2333
    3. Bob_Volk 24 5888
    4. Anny_Cin 95 999999
    5. Williams 30 -22
    6. Cindy 76 76000
    7. Alice 18 88888
    8. Joe_Mike 32 3222
    9. Michael 5 300000
    10. Rosemary 40 5888
    11. Dobby 24 5888
    12. Billy 24 5888
    13. Nobody 5 0
    14. 4 15 45
    15. 4 30 35
    16. 4 5 95
    17. 1 45 50

    Sample Output:

    1. Case #1:
    2. Alice 18 88888
    3. Billy 24 5888
    4. Bob_Volk 24 5888
    5. Dobby 24 5888
    6. Case #2:
    7. Joe_Mike 32 3222
    8. Zoe_Bill 35 2333
    9. Williams 30 -22
    10. Case #3:
    11. Anny_Cin 95 999999
    12. Michael 5 300000
    13. Alice 18 88888
    14. Cindy 76 76000
    15. Case #4:
    16. None

    题目大意: 

    输入n个人的信息和k次查询次数,最后每组的输出结果不超过100个人,按照财富从大到小排序,如果财富相同按照年龄从小到大排序,年龄相同再按照姓名字典序从小到大排序。

    解题思路: 

    首先需要一个Person类 其中包含三个属性:财富、名字、年龄

    每次读入一个人的三个属性 就把它定义为一个Person的对象 放入People数组中

    再写一个自定义排序的函数来将People这个包含所有Person对象的列表按照题目要求的排序方式进行排序

    最后每次都遍历一次People列表 若当前对象的年龄是在范围内 输出即可

    因为已经按题目要求排序好了

    Python3代码: 

    1. import functools
    2. import sys
    3. class Person :
    4. def __init__(self,age,money,name) :
    5. self.age = age
    6. self.money = money
    7. self.name = name
    8. def cmp(a,b) :
    9. if a.money != b.money :
    10. if a.money > b.money : return -1
    11. else : return 1
    12. else :
    13. if a.age != b.age :
    14. if a.age > b.age : return 1
    15. else : return -1
    16. else :
    17. if a.name > b.name : return 1
    18. else : return -1
    19. n,m = map(int,input().split())
    20. People = []
    21. for _ in range(n) :
    22. name,age,money = sys.stdin.readline().split()
    23. age = int(age) ; money = int(money)
    24. tmp = Person(age,money,name)
    25. People.append(tmp)
    26. People.sort(key=functools.cmp_to_key(cmp))
    27. #* 先按资产降序排列 再按年龄升序排列 最后按名字升序排列
    28. for i in range(1,m+1) :
    29. txt = 'Case #{}:'
    30. print(txt.format(i))
    31. cnt = 0
    32. M,amin,amax = map(int,sys.stdin.readline().split())
    33. for j in range(n) :
    34. if People[j].age >= amin and People[j].age <= amax :
    35. print(People[j].name,People[j].age,People[j].money)
    36. cnt += 1
    37. if cnt == M : break
    38. if cnt == 0 : print('None')

  • 相关阅读:
    【wxGlade学习】wxGlade环境配置
    GBASE 8s onconfig文件格式
    PDFiumCore:.Net里的PDF渲染引擎
    基于连续小波变换的厄尔尼诺海平面周期变化数据集分析
    JS正则表达式
    使用“vue init mpvue/mpvue-quickstart“初始化mpvue项目时出现的错误及解决办法
    客户开发信怎么写?新手如何发客户开发信?
    怎么批量把图片格式转为jpg?
    从基础到高级,看完这篇Java进阶文档,你会发现没有那么难
    快速部署 Garnet
  • 原文地址:https://blog.csdn.net/m0_54689021/article/details/126272005