📜  Python|最大模对

📅  最后修改于: 2022-05-13 01:55:25.146000             🧑  作者: Mango

Python|最大模对

有时,我们需要找到获得最大余数的对的具体问题。在某些情况下,我们不需要更改列表的顺序并在类似列表中执行一些操作而不使用额外的空间。让我们讨论可以执行此操作的某些方式。

方法 #1:使用列表理解 + max() + combination() + lambda
可以使用上述函数的组合来执行此特定任务,其中我们使用列表推导来绑定所有功能,使用 max函数来获得最大模数,组合函数在内部找到所有余数,而 lambda函数用于计算模数。

# Python3 code to demonstrate
# Maximum modulo pair
# using list comprehension + max() + combinations() + lambda
from itertools import combinations
  
# initializing list
test_list = [3, 4, 1, 7, 9, 1]
  
# printing original list
print("The original list : " + str(test_list))
  
# using list comprehension + max() + combinations() + lambda
# Maximum modulo pair
res = max(combinations(test_list, 2), key = lambda sub: sub[0] % sub[1])
  
# print result
print("The maximum remainder pair is : " + str(res))
输出 :
The original list : [3, 4, 1, 7, 9, 1]
The maximum remainder pair is : (7, 9)

方法 #2:使用列表理解 + nlargest() + combination() + lambda
这种方法不仅可以找到单个最大值,还可以在需要时找到 k 个最大模对,并使用 nlargest函数而不是 max函数来实现此功能。

# Python3 code to demonstrate
# Maximum modulo pair
# using list comprehension + nlargest() + combinations() + lambda
from itertools import combinations
from heapq import nlargest
  
# initializing list
test_list = [3, 4, 1, 7, 9, 8]
  
# printing original list
print("The original list : " + str(test_list))
  
# using list comprehension + max() + combinations() + lambda
# Maximum modulo pair
# computes 2 maximum pair remainders
res = nlargest(2, combinations(test_list, 2), key = lambda sub: sub[0] % sub[1])
  
# print result
print("The maximum remainder pair is : " + str(res))
输出 :
The original list : [3, 4, 1, 7, 9, 8]
The maximum remainder pair is : [(7, 9), (7, 8)]