首页 > 携程 9.8测开笔试AC情况
头像
芒果爱泡泡
编辑于 2020-09-09 10:46
+ 关注

携程 9.8测开笔试AC情况 投票

第二题:
贪心法,就是用栈,先排序,只用两个数组最大的进行比较,一直弹出员工数组,直到找到员工数组最后一个元素是刚好小于任务数组最大的元素,然后双双弹出,进行下一轮比较。
nums1=list(map(int,input().split()))
nums2=list(map(int,input().split()))
nums1.sort()
nums2.sort()
count=0
if nums2[-1]<nums1[0]:
    print(0)
else:
    while nums1 and nums2:
        while nums2[-1]<nums1[-1]:
            nums1.pop()
            if not nums1:
                break
        if not nums1 and not nums2:
            break
        count+=1
        nums1.pop()
        nums2.pop()
    print(count)


全部评论

(5) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

历年真题 真题热练榜 24小时
技术(软件)/信息技术类
查看全部

近期精华帖

热门推荐