티스토리 뷰
Problem
Given an m x n binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area.
Example 1:
Input: matrix = [["1","0","1","0","0"],["1","0","1","1","1"],["1","1","1","1","1"],["1","0","0","1","0"]]
Output: 4
Example 2:
Input: matrix = [["0","1"],["1","0"]]
Output: 1
Example 3:
Input: matrix = [["0"]]
Output: 0
Constraints:
- m == matrix.length
- n == matrix[i].length
- 1 <= m, n <= 300
- matrix[i][j] is '0' or '1'.
Solution
0과 1로 구성된 m * n 행렬이 주어질 때, 1로만 구성된 가장 큰 정사각형의 면적을 반환하는 문제입니다.
DP를 이용해 왼쪽, 위쪽, 대각선 왼쪽을 비교해가면서 정사각형의 크기를 구할 수 있습니다.
public class Solution {
public int maximalSquare(char[][] matrix) {
if (matrix == null || matrix.length == 0) {
return 0;
}
int width = matrix.length, height = matrix[0].length, result = 0;
int[][] dp = new int[width][height];
for (int i = 0; i < width; i++) { // (1)
dp[i][0] = matrix[i][0] - '0';
result = Math.max(result, dp[i][0]);
}
for (int i = 0; i < height; i++) { // (2)
dp[0][i] = matrix[0][i] - '0';
result = Math.max(result, dp[0][i]);
}
for (int i = 1; i < width; i++) { // (3)
for (int j = 1; j < height; j++) {
if (matrix[i][j] == '0') { // (4)
dp[i][j] = 0;
continue;
}
// (5)
int min = Math.min(Math.min(dp[i - 1][j], dp[i][j - 1]), dp[i - 1][j - 1]);
dp[i][j] = min + 1;
result = Math.max(result, dp[i][j]); // (6)
}
}
return result * result; // (7)
}
}
- DP 행렬의 첫 행을 초기화 합니다.
- DP 행렬의 첫 열을 초기화 합니다.
- 초기화 된 행과 열 이후부터 탐색하면서
- 0일 경우 아무것도 하지 않습니다.
- 1일 경우 바로 왼쪽 칸, 위쪽 칸, 대각선 왼쪽 칸의 값의 최솟값을 구해 그 값에 1을 더해줍니다.
- dp 행렬의 최댓값을 갱신합니다.
- 최댓값을 제곱해 정사각형의 면적을 반환합니다.
Test
package io.lcalmsky.leetcode.maximal_square;
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 givenMatrix_whenFindMaximalSquare_thenCorrect() {
assertAll(
() -> test(new char[][]{
{'1', '0', '1', '0', '0'},
{'1', '0', '1', '1', '1'},
{'1', '1', '1', '1', '1'},
{'1', '0', '0', '1', '0'}
}, 4),
() -> test(new char[][]{
{'0', '1'}
}, 1)
);
}
private void test(char[][] matrix, int expected) {
// when
Solution maximalSquare = new Solution();
int actual = maximalSquare.maximalSquare(matrix);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
[LeetCode - Daily Challenge] 1200. Minimum Absolute Difference (0) | 2021.12.21 |
---|---|
[LeetCode - Daily Challenge] 394. Decode String (0) | 2021.12.20 |
[LeetCode - Daily Challenge] 147. Insertion Sort List (0) | 2021.12.16 |
[LeetCode - Daily Challenge] 938. Range Sum of BST (0) | 2021.12.15 |
[LeetCode - Daily Challenge] 790. Domino and Tromino Tiling (0) | 2021.12.14 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- JSON
- spring boot jwt
- @ManyToOne
- Java
- r
- 스프링 부트
- 헥사고날 아키텍처
- QueryDSL
- Spring Boot
- Linux
- 스프링부트
- gRPC
- 스프링 부트 애플리케이션
- intellij
- JPA
- spring boot application
- spring boot app
- 알고리즘
- Spring Boot Tutorial
- Spring Boot JPA
- proto3
- Jackson
- 스프링 데이터 jpa
- 함께 자라기 후기
- 스프링 부트 회원 가입
- 함께 자라기
- 클린 아키텍처
- 스프링 부트 튜토리얼
- leetcode
- 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 | 31 |
글 보관함