forked from yubinbai/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.java
27 lines (27 loc) · 982 Bytes
/
Solution.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
public class Solution {
public int maxProduct(int[] A) {
int ret = A[0];
int runningMax = 1;
int runningMin = 1;
for (int a : A) {
if (a == 0) {
ret = Math.max(ret, 0);
runningMax = runningMin = 1;
} else {
int v1 = runningMax * a;
int v2 = runningMin * a;
runningMax = Math.max(v1, Math.max(v2, a));
runningMin = Math.min(v1, Math.min(v2, a));
ret = Math.max(ret, runningMax);
}
}
return ret;
}
public static void main(String[] args) {
Solution s = new Solution();
System.out.format("%d\n", s.maxProduct(new int[] {2, 3, 2, -1, -2, -4}));
System.out.format("%d\n", s.maxProduct(new int[] {0, 2}));
System.out.format("%d\n", s.maxProduct(new int[] { -1, 0, -2}));
System.out.format("%d\n", s.maxProduct(new int[] {3, -1, 4}));
}
}