Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 28 | 29 | 30 |
Tags
- 바질토마토뭐시기
- 서울제빵소
- 밥먹고
- LeetCode
- 눈알빠지겠네
- 알고리즘테스트
- 미앤아이
- 메탈퍼즐
- 메일우유
- 천등
- 게임
- 하스스톤
- 토이프로젝트
- 코테
- 잠실새내
- 맛집
- 코딩테스트
- 송리단
- 누룽지소금빵
- 버즈2프로
- 발더스3
- 3d퍼즐
- 노노그램
- 발더스게이트
- DIY
- 뜨아거
- 취미
- javascript
- 나쫌
- 발더스모드
Archives
- Today
- Total
.Zzumbong
[leetCode/JS] 152. Maximum Product Subarray 본문
난이도 [ 🤔 ] Medium
문제 설명
Given an integer array nums
, find a subarray that has the largest product, and return the product.
The test cases are generated so that the answer will fit in a 32-bit integer.
연속된 element 중 곱했을 때, 가장큰 수를 return 한다.
입출력 예
Example 1:
Input: nums = [2,3,-2,4]
Output: 6
Explanation: [2,3] has the largest product 6.
Example 2:
Input: nums = [-2,0,-1]
Output: 0
Explanation: The result cannot be 2, because [-2,-1] is not a subarray.
Constraints
1 <= nums.length <= 2 * 104
-10 <= nums[i] <= 10
- The product of any prefix or suffix of
nums
is guaranteed to fit in a 32-bit integer.
내 솔루션
- array에서 뭔가 합쳤을 때, 가장 큰 수, 가장 작은 수 를 구해라 이런건 대부분 DP로 푼다.
- 처음엔 가장 큰 수 찾기 라고 생각해서 nums[i-1] * nums[i] 와 nums[i]와 max 중 큰 수를 max에 넣었다.
var maxProduct = function(nums) {
let max = nums[0];
for(let i = 1; i < nums.length; i++) {
max = Math.max(max, nums[i], nums[i-1] * nums[i]);
}
return max;
};
- 고려하지 못한 상황이 [-2, 3, -4] 처럼 음수끼리 곱했 을때, 가장 큰 수가 나올 수 있다는 점이다
var maxProduct = function(nums) {
let max = nums[0];
let prevMin = nums[0];
let prevMax = nums[0];
for(let i = 1; i < nums.length; i++) {
const curMin = prevMin * nums[i];
const curMax = prevMax * nums[i];
prevMax = Math.max(nums[i], curMin, curMax);
prevMin = Math.min(nums[i], curMin, curMax);
max = Math.max(max, prevMax);
}
return max;
};
- 완성본.
감상평
- 대부분의 알고리즘들의 개념들은 참 쉬운데..
- 코드로 보면 개같이 어렵다.
- DP가 어려워서 DP문제들을 풀고 있는데, 하면 할 수록 더 어려워진다.
'coding test > leetCode' 카테고리의 다른 글
[leetCode/JS] 232. Implement Queue using Stacks (0) | 2022.12.16 |
---|---|
[leetCode/JS] 1143. Longest Common Subsequence (0) | 2022.12.15 |
[leetCode/JS] 198. House Robber (0) | 2022.12.14 |
[leetCode/JS] 931. Minimum Falling Path Sum (0) | 2022.12.13 |
[leetCode/JS] 70. Climbing Stairs (0) | 2022.12.12 |
Comments