628. Maximum Product of Three Numbers

2020-04-17 01:43:06 蜻蜓队长

Problem:

Given an integer array, find three numbers whose product is maximum and output the maximum product.

Example 1:

Input: [1,2,3]
Output: 6

Example 2:

Input: [1,2,3,4]
Output: 24

Note:

  1. The length of the given array will be in range [3,104] and all elements are in the range [-1000, 1000].
  2. Multiplication of any three numbers in the input won't exceed the range of 32-bit signed integer.

思路

Solution (C++):

int maximumProduct(vector<int>& nums) {
    sort(nums.begin(), nums.end());
    int n = nums.size();
    if (n < 3)  return 0;
    if (nums[n-1] > 0) {
        int max_two = max(nums[n-2]*nums[n-3], nums[0]*nums[1]);
        return nums[n-1] * max_two;
    } else {
        return nums[n-1] * nums[n-2] * nums[n-3];
    }
    return 0;
}

性能

Runtime: 96 ms  Memory Usage: 8.8 MB

思路

Solution (C++):


性能

Runtime: ms  Memory Usage: MB

以上内容来自于网络,如有侵权联系即删除
相关文章

上一篇: 4种 promise 写法有什么区别

下一篇: Codeforces Round #635 (Div. 2)A~E

客服紫薇:15852074331
在线咨询
客户经理