携程 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)


#笔试题目#
全部评论
测开的sql题懵了
点赞 回复 分享
发布于 2020-09-08 20:46
编程题有没有人说说思路呀,表示题目理解困难
点赞 回复 分享
发布于 2020-09-08 21:13
SQL是分组查询嘛?一直没弄出来 浪费了很多时间
点赞 回复 分享
发布于 2020-09-08 21:34
想问一下错在哪里: select * from tablexxxxxxxx where datexxxxxx in (select datexxxxxxx from tablexxxxxxxx group by  datexxxxxx order by datexxxxxx desc limit 2)
点赞 回复 分享
发布于 2020-09-08 21:59
SQL是真的懵逼
点赞 回复 分享
发布于 2020-09-09 03:11

相关推荐

10-11 17:30
湖南大学 C++
我已成为0offer的糕手:羡慕
点赞 评论 收藏
分享
评论
1
2
分享
牛客网
牛客企业服务