티스토리 뷰
Problem
Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum.
A subarray is a contiguous part of an array.
Example 1:
Input: nums = [-2,1,-3,4,-1,2,1,-5,4]
Output: 6
Explanation: [4,-1,2,1] has the largest sum = 6.
Example 2:
Input: nums = [1]
Output: 1
Example 3:
Input: nums = [5,4,-1,7,8]
Output: 23
Constraints:
- 1 <= nums.length <= 10^5
- -10^4 <= nums[i] <= 10^4
Solution
정수 배열이 주어졌을 때 최소 하나 이상을 포함하는 연속된 부분 배열의 합이 최대가 되는 값을 구하는 문제입니다.
DP를 이용하여 해결할 수 있습니다.
public class Solution {
public int maxSubArray(int[] nums) {
if (nums.length == 1) {
return nums[0];
}
int[] dp = new int[nums.length + 1];
dp[0] = 0;
dp[1] = nums[0];
int max = dp[1]; // (1)
for (int i = 1; i < nums.length + 1; i++) {
dp[i] = Math.max(dp[i - 1], 0) + nums[i - 1]; // (2)
max = Math.max(dp[i], max); // (3)
}
return max;
}
}
- 최댓값을 계속 기록하고 있어야 하므로 최댓값을 저장할 변수를 선언 및 초기화합니다.
- dp 배열에 누적값을 계산하는데, 이전값이 마이너스이면 더할 필요가 없으므로 0과 비교하여 더 큰 값과 nums 배열의 값을 더해줍니다.
- 최댓값과 dp 배열의 누적값 중 더 높은 값으로 최댓값을 갱신합니다.
Test
package io.lcalmsky.leetcode.maximum_subarray;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void testAll() {
assertAll(
() -> test(new int[]{-2, 1, -3, 4, -1, 2, 1, -5, 4}, 6),
() -> test(new int[]{1}, 1),
() -> test(new int[]{5, 4, -1, 7, 8}, 23)
);
}
private void test(int[] given, int expected) {
// when
Solution solution = new Solution();
int actual = solution.maxSubArray(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- intellij
- Spring Boot
- 스프링 부트
- Linux
- 스프링 데이터 jpa
- JSON
- spring boot app
- spring boot jwt
- @ManyToOne
- r
- 스프링 부트 애플리케이션
- 알고리즘
- QueryDSL
- Jackson
- gRPC
- Spring Boot Tutorial
- proto3
- JPA
- spring boot application
- Java
- 클린 아키텍처
- 스프링 부트 튜토리얼
- 헥사고날 아키텍처
- 스프링 부트 회원 가입
- leetcode
- Spring Boot JPA
- 스프링부트
- 함께 자라기 후기
- 함께 자라기
- Spring Data JPA
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함