题解 | #成绩排序#

成绩排序

https://www.nowcoder.com/practice/8e400fd9905747e4acc2aeed7240978b

import bisect
n = int(input())
direction = int(input())
record = []
score = []
for i in range(n):
    name,s = input().split(' ')
    s = int(s)
    if score and s>score[-1]:
        score.append(s)
        record.append(' '.join([name,str(s)]))
    else:
        index= bisect.bisect_right(score,s) if direction==1 else bisect.bisect_left(score,s)
        score.insert(index,s)
        record.insert(index,' '.join([name,str(s)]))
if direction==0:
    record = record[::-1]
for one in record:
    print(one)



二分查找即可
全部评论

相关推荐

04-27 15:01
早稲田大学 Java
牛客72191338...:可能是时间点的问题,四月底机会确实会相对少点,但佬这个学历摆在这,会有机会的
简历中的项目经历要怎么写
点赞 评论 收藏
分享
讲原则的小黄鸭不愿吃...:有时候面试眼缘确实很重要,当然,飞驰人生2中张弛说的很对:我努力了无数次,但是我知道机会只会出现在其中一两次。你把每一次笔试面试都全力以赴,总有你运气发挥到位的时候
点赞 评论 收藏
分享
评论
点赞
1
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务