leetcode1333
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode1333相关的知识,希望对你有一定的参考价值。
1 class Solution: 2 def filterRestaurants(self, restaurants: ‘List[List[int]]‘, veganFriendly: int, maxPrice: int, maxDistance: int) -> ‘List[int]‘: 3 n = len(restaurants) 4 satisfied = [] 5 for i in range(n): 6 cur = restaurants[i] 7 if veganFriendly == 1: 8 if cur[2] == 1 and cur[3] <= maxPrice and cur[4] <= maxDistance: 9 satisfied.append([cur[0],cur[1]]) 10 else: 11 if cur[3] <= maxPrice and cur[4] <= maxDistance: 12 satisfied.append([cur[0],cur[1]]) 13 satisfied = sorted(satisfied,key=lambda x:[-x[1],-x[0]]) 14 result = [] 15 for s in satisfied: 16 result.append(s[0]) 17 return result
算法思路:多维数组,多条件排序。
先取出所有符合条件的元素,再按照两个条件排序。
以上是关于leetcode1333的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode810. 黑板异或游戏/455. 分发饼干/剑指Offer 53 - I. 在排序数组中查找数字 I/53 - II. 0~n-1中缺失的数字/54. 二叉搜索树的第k大节点(代码片段