Python 基础知识

求两个向量的最大标量积

“查找两个向量的最大标量积”问题的详细指南和 Python 实现。

问题陈述

编写一个函数 max_scalar_product(v1, v2) ,它接受两个长度相等的整数列表并返回最大可能的标量(点)积。在计算点积之前,您可以按任意顺序重新排列两个向量中的元素。要最大化,请按相同的顺序对两个向量进行排序,并将相应的元素配对。

约束条件
  • 1 <= len(v1) == len(v2) <= 10^4
  • -10^5 <= v1[i], v2[i] <= 10^5

示例

Example 1
Input
v1 = [1, 3, -5], v2 = [-2, 4, 1]
Output
23
Explanation

Sort both ascending: v1=[-5,1,3], v2=[-2,1,4]. Dot: (-5)*(-2)+1*1+3*4 = 10+1+12 = 23.

Example 2
Input
v1 = [1, 2, 3], v2 = [4, 5, 6]
Output
32
Explanation

Sort both ascending: [1,2,3] and [4,5,6]. Dot: 1*4+2*5+3*6 = 4+10+18 = 32.

Example 3
Input
v1 = [1, 1], v2 = [1, 1]
Output
2
Explanation

Any arrangement gives 1*1 + 1*1 = 2.

Need a Hint?
考虑使用特定于数组的数据结构,例如集合或堆。
Edge Cases to Watch
  • 空输入结构
  • 单元素输入
  • 大数值范围

准备好解决了吗?

Open the problem in PyRun's browser-based Python editor. Your code runs fully offline — no server required.

在编辑器中打开
Found this breakdown helpful?

PyRun is built and maintained by an independent solo developer. If this helped your interview prep, consider buying a coffee!

Buy me a coffee

推荐的 Python 资源

通过相关的交互式教程、备忘单和代码比较来扩展您的知识。