• LeetCode Maximum Product Subarray


    Find the contiguous subarray within an array (containing at least one number) which has the largest product.

    For example, given the array [2,3,-2,4],
    the contiguous subarray [2,3] has the largest product = 6.

    minLast[i] 表示以A[i]结尾的最小值,maxLast[i]表示以A[i]结尾的最大值。

    minLast[i] = Math.min(A[i], Math.min(minLast[i - 1]*A[i], maxLast[i - 1]*A[i]));
    maxLast[i] = Math.max(A[i], Math.max(maxLast[i - 1]*A[i], minLast[i - 1]*A[i]));

     1 public class Solution {
     2     public int maxProduct(int[] A) {
     3         int length = A.length;
     4         if (length == 0) {
     5             return 0;
     6         }
     7         int[] minLast = new int[length];
     8         int[] maxLast = new int[length];
     9         minLast[0] = A[0];
    10         maxLast[0] = A[0];
    11         int res = Integer.MIN_VALUE;
    12         for (int i = 1; i <length ; i++) {
    13             minLast[i] = Math.min(A[i], Math.min(minLast[i - 1]*A[i], maxLast[i - 1]*A[i]));
    14             maxLast[i] = Math.max(A[i], Math.max(maxLast[i - 1]*A[i], minLast[i - 1]*A[i]));
    15         }
    16         for (int i : maxLast) {
    17             if (i>res) res = i;
    18         }
    19         return res;
    20     }
    21 }
  • 相关阅读:
    敲七
    二维指针数组**p
    食物链(待解决)
    蛇行矩阵
    快速排序 QuickSort
    堆排序
    猪的安家
    百度语言翻译机
    HTML <base> 标签
    免费网络管理流量监控软件大比拼
  • 原文地址:https://www.cnblogs.com/birdhack/p/4131675.html
Copyright © 2020-2023  润新知